Package com.mindee.v2.cli
Enum BaseInferenceCommand.OutputType
- java.lang.Object
-
- java.lang.Enum<BaseInferenceCommand.OutputType>
-
- com.mindee.v2.cli.BaseInferenceCommand.OutputType
-
- All Implemented Interfaces:
Serializable,Comparable<BaseInferenceCommand.OutputType>
- Enclosing class:
- BaseInferenceCommand
public static enum BaseInferenceCommand.OutputType extends Enum<BaseInferenceCommand.OutputType>
Output format for the command.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseInferenceCommand.OutputTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BaseInferenceCommand.OutputType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Summary
public static final BaseInferenceCommand.OutputType Summary
-
Full
public static final BaseInferenceCommand.OutputType Full
-
Raw
public static final BaseInferenceCommand.OutputType Raw
-
-
Method Detail
-
values
public static BaseInferenceCommand.OutputType[] 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 (BaseInferenceCommand.OutputType c : BaseInferenceCommand.OutputType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseInferenceCommand.OutputType 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
-
-