Package oracle.security.xs
Enum SessionNamespace.ATTR_EVENT_TYPE
- java.lang.Object
-
- java.lang.Enum<SessionNamespace.ATTR_EVENT_TYPE>
-
- oracle.security.xs.SessionNamespace.ATTR_EVENT_TYPE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SessionNamespace.ATTR_EVENT_TYPE>
- Enclosing interface:
- SessionNamespace
public static enum SessionNamespace.ATTR_EVENT_TYPE extends java.lang.Enum<SessionNamespace.ATTR_EVENT_TYPE>
The list of possible events an attribute can have.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRST_READMODIFY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionNamespace.ATTR_EVENT_TYPEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SessionNamespace.ATTR_EVENT_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST_READ
public static final SessionNamespace.ATTR_EVENT_TYPE FIRST_READ
-
MODIFY
public static final SessionNamespace.ATTR_EVENT_TYPE MODIFY
-
-
Method Detail
-
values
public static SessionNamespace.ATTR_EVENT_TYPE[] 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 (SessionNamespace.ATTR_EVENT_TYPE c : SessionNamespace.ATTR_EVENT_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SessionNamespace.ATTR_EVENT_TYPE valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-