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