Package deltix.qsrv.hf.tickdb.schema
Enum FieldAttribute
- java.lang.Object
-
- java.lang.Enum<FieldAttribute>
-
- deltix.qsrv.hf.tickdb.schema.FieldAttribute
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FieldAttribute>
public enum FieldAttribute extends java.lang.Enum<FieldAttribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DataType
Description
DisplayIdentifier
Name
PrimaryKey
Relation
StaticValue
Title
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldAttribute
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FieldAttribute[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Name
public static final FieldAttribute Name
-
Title
public static final FieldAttribute Title
-
Description
public static final FieldAttribute Description
-
DataType
public static final FieldAttribute DataType
-
Relation
public static final FieldAttribute Relation
-
DisplayIdentifier
public static final FieldAttribute DisplayIdentifier
-
PrimaryKey
public static final FieldAttribute PrimaryKey
-
StaticValue
public static final FieldAttribute StaticValue
-
-
Method Detail
-
values
public static FieldAttribute[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FieldAttribute c : FieldAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldAttribute valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-