public enum TdbFieldGroupType extends java.lang.Enum<TdbFieldGroupType>
Enum Constant and Description |
---|
Structural
Structural field group.
|
Tuple
Field group that defines a tuple structure.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Return the TRIPxpi protocol name for the current field group type identifier
|
static TdbFieldGroupType |
getTypeof(java.lang.String name)
Retrieve the field group type ID that matches the provided name
|
static TdbFieldGroupType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbFieldGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbFieldGroupType Structural
public static final TdbFieldGroupType Tuple
public static TdbFieldGroupType[] values()
for (TdbFieldGroupType c : TdbFieldGroupType.values()) System.out.println(c);
public static TdbFieldGroupType 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 TdbFieldGroupType getTypeof(java.lang.String name)
name
- The name to matchpublic java.lang.String getName()