Enum CacheListCommand.OutputFormat
- java.lang.Object
-
- java.lang.Enum<CacheListCommand.OutputFormat>
-
- org.apache.ignite.internal.management.cache.CacheListCommand.OutputFormat
-
- All Implemented Interfaces:
Serializable,Comparable<CacheListCommand.OutputFormat>
- Enclosing class:
- CacheListCommand
public static enum CacheListCommand.OutputFormat extends Enum<CacheListCommand.OutputFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTI_LINEMulti line.SINGLE_LINESingle line.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CacheListCommand.OutputFormatfromConsoleName(String text)Converts format name in console to enumerated value.Stringtext()StringtoString()static CacheListCommand.OutputFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static CacheListCommand.OutputFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_LINE
public static final CacheListCommand.OutputFormat SINGLE_LINE
Single line.
-
MULTI_LINE
public static final CacheListCommand.OutputFormat MULTI_LINE
Multi line.
-
-
Method Detail
-
values
public static CacheListCommand.OutputFormat[] 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 (CacheListCommand.OutputFormat c : CacheListCommand.OutputFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheListCommand.OutputFormat 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
-
text
public String text()
- Returns:
- Text.
-
fromConsoleName
public static CacheListCommand.OutputFormat fromConsoleName(String text)
Converts format name in console to enumerated value.- Parameters:
text- Format name in console.- Returns:
- Enumerated value.
- Throws:
IllegalArgumentException- If enumerated value not found.
-
toString
public String toString()
- Overrides:
toStringin classEnum<CacheListCommand.OutputFormat>
-
-