public static enum OptInputParameterInfo.Type extends java.lang.Enum<OptInputParameterInfo.Type>
| Enum Constant and Description | 
|---|
| CURRENCYOptional input is currency | 
| DEGREEOptional input is degree | 
| OTHEROptional input is something other | 
| PERCENTOptional input is percent | 
| Modifier and Type | Method and Description | 
|---|---|
| static OptInputParameterInfo.Type | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static OptInputParameterInfo.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final OptInputParameterInfo.Type PERCENT
public static final OptInputParameterInfo.Type DEGREE
public static final OptInputParameterInfo.Type CURRENCY
public static final OptInputParameterInfo.Type OTHER
public static OptInputParameterInfo.Type[] values()
for (OptInputParameterInfo.Type c : OptInputParameterInfo.Type.values()) System.out.println(c);
public static OptInputParameterInfo.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2025. All rights reserved.