public enum UpdateReturnState extends Enum<UpdateReturnState>
| Enum Constant and Description |
|---|
InsertedCountIncremented
Indicates a normal sketch update response and the action that was taken by the sketch.
|
InsertedCountNotIncremented
Indicates a normal sketch update response and the action that was taken by the sketch.
|
RejectedDuplicate
Indicates a normal sketch update response and the action that was taken by the sketch.
|
RejectedNullOrEmpty
Indicates a normal sketch update response and the action that was taken by the sketch.
|
RejectedOverTheta
Indicates a normal sketch update response and the action that was taken by the sketch.
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateReturnState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateReturnState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateReturnState InsertedCountIncremented
public static final UpdateReturnState InsertedCountNotIncremented
public static final UpdateReturnState RejectedDuplicate
public static final UpdateReturnState RejectedNullOrEmpty
public static final UpdateReturnState RejectedOverTheta
public static UpdateReturnState[] values()
for (UpdateReturnState c : UpdateReturnState.values()) System.out.println(c);
public static UpdateReturnState 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 © 2015–2017 Yahoo! Inc.. All rights reserved.