public enum RecordingSignal extends Enum<RecordingSignal>
Enum Constant and Description |
---|
DELETE
Recording has deleted segments.
|
EXTEND
Recording has started extending.
|
MERGE
Recording merged with live stream after replay.
|
NULL_VAL
To be used to represent not present or null.
|
REPLICATE
Recording descriptor replicated from source archive.
|
REPLICATE_END
Recording replication has ended.
|
START
Recording has started for a stream.
|
STOP
Recording has stopped for a stream.
|
SYNC
Recording synchronised with source archive.
|
Modifier and Type | Method and Description |
---|---|
static RecordingSignal |
get(int value)
Lookup the enum value representing the value.
|
int |
value()
The raw encoded value in the Java type representation.
|
static RecordingSignal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordingSignal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingSignal START
public static final RecordingSignal STOP
public static final RecordingSignal EXTEND
public static final RecordingSignal REPLICATE
public static final RecordingSignal MERGE
public static final RecordingSignal SYNC
public static final RecordingSignal DELETE
public static final RecordingSignal REPLICATE_END
public static final RecordingSignal NULL_VAL
public static RecordingSignal[] values()
for (RecordingSignal c : RecordingSignal.values()) System.out.println(c);
public static RecordingSignal 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 nullpublic int value()
public static RecordingSignal get(int value)
value
- encoded to be looked up.Copyright © 2014-2022 Real Logic Limited. All Rights Reserved.