Enum Class GrouperEngineBuiltin
- All Implemented Interfaces:
GrouperEngineIdentifier
,Serializable
,Comparable<GrouperEngineBuiltin>
,Constable
public enum GrouperEngineBuiltin
extends Enum<GrouperEngineBuiltin>
implements GrouperEngineIdentifier
built in grouper engines. Note, if we prefix builtins with "grouper"
there will not be conflicts with custom engines
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionget the string for the db col.static GrouperEngineBuiltin
Returns the enum constant of this class with the specified name.static GrouperEngineBuiltin
valueOfIgnoreCase
(String string, boolean exceptionOnNull) do a case-insensitive matchingstatic GrouperEngineBuiltin
valueOfIgnoreCase
(String string, boolean exceptionOnNull, boolean exceptionIfNotFound) do a case-insensitive matchingstatic GrouperEngineBuiltin[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GSH
gsh engine -
UI
default group ui engine -
WS
web service engine -
LOADER
loader engine -
LDAPPC
ldappc engine -
IMPORT
ldappc engine -
USDU
usdu engine engine -
JUNIT
junit engine
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getGrouperEngine
Description copied from interface:GrouperEngineIdentifier
get the string for the db col. Generally grouper built in engines start with "grouper"- Specified by:
getGrouperEngine
in interfaceGrouperEngineIdentifier
- Returns:
- the engine
- See Also:
-
valueOfIgnoreCase
do a case-insensitive matching- Parameters:
string
-exceptionOnNull
- will not allow null or blank entries- Returns:
- the enum or null or exception if not found
-
valueOfIgnoreCase
public static GrouperEngineBuiltin valueOfIgnoreCase(String string, boolean exceptionOnNull, boolean exceptionIfNotFound) do a case-insensitive matching- Parameters:
string
-exceptionOnNull
- will not allow null or blank entriesexceptionIfNotFound
- if string isnt found should there be an exception- Returns:
- the enum or null or exception if not found
-