public static enum SingleThreadedRanking.UpdateResult extends Enum<SingleThreadedRanking.UpdateResult>
| Enum Constant and Description |
|---|
INSERTED |
SKIPPED_BECAUSE_OF_DUPLICATE |
SKIPPED_BECAUSE_TOO_SMALL |
| Modifier and Type | Method and Description |
|---|---|
static SingleThreadedRanking.UpdateResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleThreadedRanking.UpdateResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleThreadedRanking.UpdateResult SKIPPED_BECAUSE_TOO_SMALL
public static final SingleThreadedRanking.UpdateResult SKIPPED_BECAUSE_OF_DUPLICATE
public static final SingleThreadedRanking.UpdateResult INSERTED
public static SingleThreadedRanking.UpdateResult[] values()
for (SingleThreadedRanking.UpdateResult c : SingleThreadedRanking.UpdateResult.values()) System.out.println(c);
public static SingleThreadedRanking.UpdateResult 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.