public static enum CatalogField.CatalogFieldType extends Enum<CatalogField.CatalogFieldType>
| Enum Constant and Description |
|---|
DATA
Data fields contains actial data of the catalog record
|
ID
Identifier of catalog (surrogate key)
|
STATE
State fields tells if the catalog record is active or non-active (soft deleted)
|
| Modifier and Type | Method and Description |
|---|---|
static CatalogField.CatalogFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogField.CatalogFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogField.CatalogFieldType ID
public static final CatalogField.CatalogFieldType DATA
public static final CatalogField.CatalogFieldType STATE
public static CatalogField.CatalogFieldType[] values()
for (CatalogField.CatalogFieldType c : CatalogField.CatalogFieldType.values()) System.out.println(c);
public static CatalogField.CatalogFieldType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.