public static enum IVItem.ItemType extends Enum<IVItem.ItemType>
| Enum Constant and Description |
|---|
DOCUMENT |
GROUP |
SUB_DOCUMENT |
TEXT_UNIT |
| Modifier and Type | Method and Description |
|---|---|
static IVItem.ItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IVItem.ItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IVItem.ItemType DOCUMENT
public static final IVItem.ItemType SUB_DOCUMENT
public static final IVItem.ItemType GROUP
public static final IVItem.ItemType TEXT_UNIT
public static IVItem.ItemType[] values()
for (IVItem.ItemType c : IVItem.ItemType.values()) System.out.println(c);
public static IVItem.ItemType 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 © 2020. All rights reserved.