Package io.github.spartatech.sqljson.vo
Enum MultiListType
- java.lang.Object
-
- java.lang.Enum<MultiListType>
-
- io.github.spartatech.sqljson.vo.MultiListType
-
- All Implemented Interfaces:
Serializable,Comparable<MultiListType>
public enum MultiListType extends Enum<MultiListType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringallOptionsAsString()static MultiListTypefromValue(String value)StringgetFunctionName()static MultiListTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MultiListType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MATCH_ANY
public static final MultiListType MATCH_ANY
-
MATCH_ALL
public static final MultiListType MATCH_ALL
-
-
Method Detail
-
values
public static MultiListType[] 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 (MultiListType c : MultiListType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultiListType 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
-
getFunctionName
public String getFunctionName()
-
allOptionsAsString
public static String allOptionsAsString()
-
fromValue
public static MultiListType fromValue(String value)
-
-