Package org.apache.druid.client
Enum ServerView.CallbackAction
- java.lang.Object
-
- java.lang.Enum<ServerView.CallbackAction>
-
- org.apache.druid.client.ServerView.CallbackAction
-
- All Implemented Interfaces:
Serializable,Comparable<ServerView.CallbackAction>
- Enclosing interface:
- ServerView
public static enum ServerView.CallbackAction extends Enum<ServerView.CallbackAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUEUNREGISTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ServerView.CallbackActionvalueOf(String name)Returns the enum constant of this type with the specified name.static ServerView.CallbackAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUE
public static final ServerView.CallbackAction CONTINUE
-
UNREGISTER
public static final ServerView.CallbackAction UNREGISTER
-
-
Method Detail
-
values
public static ServerView.CallbackAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServerView.CallbackAction c : ServerView.CallbackAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServerView.CallbackAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-