public static enum RemoteStorageManager.IndexType extends Enum<RemoteStorageManager.IndexType>
Enum Constant and Description |
---|
LEADER_EPOCH
Represents leader epoch index.
|
OFFSET
Represents offset index.
|
PRODUCER_SNAPSHOT
Represents producer snapshot index.
|
TIMESTAMP
Represents timestamp index.
|
TRANSACTION
Represents transaction index.
|
Modifier and Type | Method and Description |
---|---|
static RemoteStorageManager.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteStorageManager.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteStorageManager.IndexType OFFSET
public static final RemoteStorageManager.IndexType TIMESTAMP
public static final RemoteStorageManager.IndexType PRODUCER_SNAPSHOT
public static final RemoteStorageManager.IndexType TRANSACTION
public static final RemoteStorageManager.IndexType LEADER_EPOCH
public static RemoteStorageManager.IndexType[] values()
for (RemoteStorageManager.IndexType c : RemoteStorageManager.IndexType.values()) System.out.println(c);
public static RemoteStorageManager.IndexType 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 null