Package deltix.qsrv.hf.tickdb.impl
Enum TickStreamPropertiesEnum
- java.lang.Object
-
- java.lang.Enum<TickStreamPropertiesEnum>
-
- deltix.qsrv.hf.tickdb.impl.TickStreamPropertiesEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TickStreamPropertiesEnum>
public enum TickStreamPropertiesEnum extends java.lang.Enum<TickStreamPropertiesEnum>
Enum version ofTickStreamProperties
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BG_PROCESS
BUFFER_OPTIONS
DATA_VERSION
DESCRIPTION
DF
ENTITIES
HIGH_AVAILABILITY
KEY
LOCATION
NAME
OWNER
PERIODICITY
REPLICA_VERSION
SCHEMA
SCOPE
TIME_RANGE
UNIQUE
VERSIONING
WRITER_CLOSED
WRITER_CREATED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPropertyId()
static TickStreamPropertiesEnum
getValueByPropertyId(int propertyId)
static TickStreamPropertiesEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TickStreamPropertiesEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEY
public static final TickStreamPropertiesEnum KEY
-
NAME
public static final TickStreamPropertiesEnum NAME
-
DESCRIPTION
public static final TickStreamPropertiesEnum DESCRIPTION
-
PERIODICITY
public static final TickStreamPropertiesEnum PERIODICITY
-
SCHEMA
public static final TickStreamPropertiesEnum SCHEMA
-
TIME_RANGE
public static final TickStreamPropertiesEnum TIME_RANGE
-
ENTITIES
public static final TickStreamPropertiesEnum ENTITIES
-
HIGH_AVAILABILITY
public static final TickStreamPropertiesEnum HIGH_AVAILABILITY
-
UNIQUE
public static final TickStreamPropertiesEnum UNIQUE
-
BUFFER_OPTIONS
public static final TickStreamPropertiesEnum BUFFER_OPTIONS
-
VERSIONING
public static final TickStreamPropertiesEnum VERSIONING
-
DATA_VERSION
public static final TickStreamPropertiesEnum DATA_VERSION
-
REPLICA_VERSION
public static final TickStreamPropertiesEnum REPLICA_VERSION
-
BG_PROCESS
public static final TickStreamPropertiesEnum BG_PROCESS
-
WRITER_CREATED
public static final TickStreamPropertiesEnum WRITER_CREATED
-
WRITER_CLOSED
public static final TickStreamPropertiesEnum WRITER_CLOSED
-
SCOPE
public static final TickStreamPropertiesEnum SCOPE
-
DF
public static final TickStreamPropertiesEnum DF
-
OWNER
public static final TickStreamPropertiesEnum OWNER
-
LOCATION
public static final TickStreamPropertiesEnum LOCATION
-
-
Method Detail
-
values
public static TickStreamPropertiesEnum[] 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 (TickStreamPropertiesEnum c : TickStreamPropertiesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TickStreamPropertiesEnum 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
-
getPropertyId
public int getPropertyId()
-
getValueByPropertyId
@Nonnull public static TickStreamPropertiesEnum getValueByPropertyId(int propertyId)
-
-