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