Package cdc.rdb
Enum RdbDatabase.EnumProperty
- java.lang.Object
-
- java.lang.Enum<RdbDatabase.EnumProperty>
-
- cdc.rdb.RdbDatabase.EnumProperty
-
- All Implemented Interfaces:
Serializable,Comparable<RdbDatabase.EnumProperty>
- Enclosing class:
- RdbDatabase
public static enum RdbDatabase.EnumProperty extends Enum<RdbDatabase.EnumProperty>
Enumeration of enum properties.- Author:
- Damien Carbonne
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ROW_ID_LIFETIME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Enum<?>>getEnumClass()StringgetMethodName()static RdbDatabase.EnumPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static RdbDatabase.EnumProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_ID_LIFETIME
public static final RdbDatabase.EnumProperty ROW_ID_LIFETIME
-
-
Method Detail
-
values
public static RdbDatabase.EnumProperty[] 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 (RdbDatabase.EnumProperty c : RdbDatabase.EnumProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RdbDatabase.EnumProperty 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
-
getMethodName
public String getMethodName()
-
-