public static enum CatalogueItem.ITEM_TYPE extends Enum<CatalogueItem.ITEM_TYPE>
| Modifier and Type | Method and Description |
|---|---|
static CatalogueItem.ITEM_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogueItem.ITEM_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogueItem.ITEM_TYPE DATASET
public static final CatalogueItem.ITEM_TYPE RESOURCE
public static CatalogueItem.ITEM_TYPE[] values()
for (CatalogueItem.ITEM_TYPE c : CatalogueItem.ITEM_TYPE.values()) System.out.println(c);
public static CatalogueItem.ITEM_TYPE 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 © 2021. All Rights Reserved.