Module datarush.library
Enum RecordRegisterSupport.Access
- java.lang.Object
-
- java.lang.Enum<RecordRegisterSupport.Access>
-
- com.pervasive.datarush.tokens.record.RecordRegisterSupport.Access
-
- All Implemented Interfaces:
Serializable
,Comparable<RecordRegisterSupport.Access>
- Enclosing class:
- RecordRegisterSupport
public static enum RecordRegisterSupport.Access extends Enum<RecordRegisterSupport.Access>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description READ
READ_WRITE
WRITE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RecordRegisterSupport.Access
valueOf(String name)
Returns the enum constant of this type with the specified name.static RecordRegisterSupport.Access[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final RecordRegisterSupport.Access READ
-
WRITE
public static final RecordRegisterSupport.Access WRITE
-
READ_WRITE
public static final RecordRegisterSupport.Access READ_WRITE
-
-
Method Detail
-
values
public static RecordRegisterSupport.Access[] 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 (RecordRegisterSupport.Access c : RecordRegisterSupport.Access.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecordRegisterSupport.Access 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
-
-