Package org.openiam.base
Enum GraphVariables
- java.lang.Object
-
- java.lang.Enum<GraphVariables>
-
- org.openiam.base.GraphVariables
-
- All Implemented Interfaces:
Serializable
,Comparable<GraphVariables>
public enum GraphVariables extends Enum<GraphVariables>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description END_DATE
GRAPH_MEMBERSHIP_ID
GRAPH_RIGHT_ID
OPENIAM_ID
START_DATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Optional<GraphVariables>
getByVariableName(String variableName)
static GraphVariables
valueOf(String name)
Returns the enum constant of this type with the specified name.static GraphVariables[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPENIAM_ID
public static final GraphVariables OPENIAM_ID
-
GRAPH_RIGHT_ID
public static final GraphVariables GRAPH_RIGHT_ID
-
GRAPH_MEMBERSHIP_ID
public static final GraphVariables GRAPH_MEMBERSHIP_ID
-
START_DATE
public static final GraphVariables START_DATE
-
END_DATE
public static final GraphVariables END_DATE
-
-
Method Detail
-
values
public static GraphVariables[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphVariables c : GraphVariables.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphVariables valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getByVariableName
public static Optional<GraphVariables> getByVariableName(String variableName)
-
-