Enum CliChangelogResultView.ResultChangelogOperation
- java.lang.Object
-
- java.lang.Enum<CliChangelogResultView.ResultChangelogOperation>
-
- org.apache.flink.table.client.cli.CliChangelogResultView.ResultChangelogOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<CliChangelogResultView.ResultChangelogOperation>
- Enclosing class:
- CliChangelogResultView
public static enum CliChangelogResultView.ResultChangelogOperation extends Enum<CliChangelogResultView.ResultChangelogOperation>
Available operations for this view.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEC_REFRESH
DOWN
INC_REFRESH
LEFT
OPEN
QUIT
REFRESH
RIGHT
UP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CliChangelogResultView.ResultChangelogOperation
valueOf(String name)
Returns the enum constant of this type with the specified name.static CliChangelogResultView.ResultChangelogOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUIT
public static final CliChangelogResultView.ResultChangelogOperation QUIT
-
REFRESH
public static final CliChangelogResultView.ResultChangelogOperation REFRESH
-
UP
public static final CliChangelogResultView.ResultChangelogOperation UP
-
DOWN
public static final CliChangelogResultView.ResultChangelogOperation DOWN
-
OPEN
public static final CliChangelogResultView.ResultChangelogOperation OPEN
-
LEFT
public static final CliChangelogResultView.ResultChangelogOperation LEFT
-
RIGHT
public static final CliChangelogResultView.ResultChangelogOperation RIGHT
-
INC_REFRESH
public static final CliChangelogResultView.ResultChangelogOperation INC_REFRESH
-
DEC_REFRESH
public static final CliChangelogResultView.ResultChangelogOperation DEC_REFRESH
-
-
Method Detail
-
values
public static CliChangelogResultView.ResultChangelogOperation[] 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 (CliChangelogResultView.ResultChangelogOperation c : CliChangelogResultView.ResultChangelogOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CliChangelogResultView.ResultChangelogOperation 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
-
-