public enum ReadFeedKeyType extends Enum<ReadFeedKeyType>
| Enum Constant and Description |
|---|
EffectivePartitionKey
Use effective partition key
|
ResourceId
Use resource name
|
| Modifier and Type | Method and Description |
|---|---|
static ReadFeedKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadFeedKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadFeedKeyType ResourceId
public static final ReadFeedKeyType EffectivePartitionKey
public static ReadFeedKeyType[] values()
for (ReadFeedKeyType c : ReadFeedKeyType.values()) System.out.println(c);
public static ReadFeedKeyType 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 nullCopyright © 2020. All rights reserved.