Enum VeniceChangelogConsumerIO.Read.SeekWhence
- java.lang.Object
-
- java.lang.Enum<VeniceChangelogConsumerIO.Read.SeekWhence>
-
- com.linkedin.venice.beam.consumer.VeniceChangelogConsumerIO.Read.SeekWhence
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VeniceChangelogConsumerIO.Read.SeekWhence>
,java.util.function.BiFunction<VeniceChangelogConsumer,CheckPointProperties,java.util.concurrent.CompletableFuture<java.lang.Void>>
- Enclosing class:
- VeniceChangelogConsumerIO.Read<K,V>
public static enum VeniceChangelogConsumerIO.Read.SeekWhence extends java.lang.Enum<VeniceChangelogConsumerIO.Read.SeekWhence> implements java.util.function.BiFunction<VeniceChangelogConsumer,CheckPointProperties,java.util.concurrent.CompletableFuture<java.lang.Void>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKPOINT
END_OF_PUSH
START_OF_PUSH
TAIL
TIMESTAMP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VeniceChangelogConsumerIO.Read.SeekWhence
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VeniceChangelogConsumerIO.Read.SeekWhence[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECKPOINT
public static final VeniceChangelogConsumerIO.Read.SeekWhence CHECKPOINT
-
END_OF_PUSH
public static final VeniceChangelogConsumerIO.Read.SeekWhence END_OF_PUSH
-
START_OF_PUSH
public static final VeniceChangelogConsumerIO.Read.SeekWhence START_OF_PUSH
-
TAIL
public static final VeniceChangelogConsumerIO.Read.SeekWhence TAIL
-
TIMESTAMP
public static final VeniceChangelogConsumerIO.Read.SeekWhence TIMESTAMP
-
-
Method Detail
-
values
public static VeniceChangelogConsumerIO.Read.SeekWhence[] 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 (VeniceChangelogConsumerIO.Read.SeekWhence c : VeniceChangelogConsumerIO.Read.SeekWhence.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VeniceChangelogConsumerIO.Read.SeekWhence 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
-
-