public enum EnumElementType extends Enum<EnumElementType>
| Enum Constant and Description |
|---|
CATALOGUEELEMENT |
CATALOGUEGROUP |
DATAELEMENT
A data element.
|
DATAELEMENTGROUP
A data element group.
|
RECORD
A record.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumElementType DATAELEMENT
public static final EnumElementType DATAELEMENTGROUP
public static final EnumElementType RECORD
Recordpublic static final EnumElementType CATALOGUEGROUP
public static final EnumElementType CATALOGUEELEMENT
public static EnumElementType[] values()
for (EnumElementType c : EnumElementType.values()) System.out.println(c);
public static EnumElementType 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 © 2022 Samply Community. All rights reserved.