public enum BlockBaseCategoryValues extends java.lang.Enum<BlockBaseCategoryValues>
List of the BlockBase categories : Relational, Hierarchical, Codasyl or Socrate.
Modifier and Type | Method and Description |
---|---|
static BlockBaseCategoryValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockBaseCategoryValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockBaseCategoryValues _C
Codasyl BlockBase
public static final BlockBaseCategoryValues _H
Hierarchical BlockBase - IMS DL/1
public static final BlockBaseCategoryValues _R
Relational BlockBase
public static final BlockBaseCategoryValues _S
Socrate BlockBase
public static BlockBaseCategoryValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static BlockBaseCategoryValues[] values()
for (BlockBaseCategoryValues c : BlockBaseCategoryValues.values()) System.out.println(c);