Package pro.taskana.task.api
Enum WildcardSearchField
- java.lang.Object
-
- java.lang.Enum<WildcardSearchField>
-
- pro.taskana.task.api.WildcardSearchField
-
- All Implemented Interfaces:
Serializable,Comparable<WildcardSearchField>
public enum WildcardSearchField extends Enum<WildcardSearchField>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WildcardSearchFieldfromString(String name)StringtoString()static WildcardSearchFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static WildcardSearchField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final WildcardSearchField NAME
-
DESCRIPTION
public static final WildcardSearchField DESCRIPTION
-
CUSTOM_1
public static final WildcardSearchField CUSTOM_1
-
CUSTOM_2
public static final WildcardSearchField CUSTOM_2
-
CUSTOM_3
public static final WildcardSearchField CUSTOM_3
-
CUSTOM_4
public static final WildcardSearchField CUSTOM_4
-
CUSTOM_5
public static final WildcardSearchField CUSTOM_5
-
CUSTOM_6
public static final WildcardSearchField CUSTOM_6
-
CUSTOM_7
public static final WildcardSearchField CUSTOM_7
-
CUSTOM_8
public static final WildcardSearchField CUSTOM_8
-
CUSTOM_9
public static final WildcardSearchField CUSTOM_9
-
CUSTOM_10
public static final WildcardSearchField CUSTOM_10
-
CUSTOM_11
public static final WildcardSearchField CUSTOM_11
-
CUSTOM_12
public static final WildcardSearchField CUSTOM_12
-
CUSTOM_13
public static final WildcardSearchField CUSTOM_13
-
CUSTOM_14
public static final WildcardSearchField CUSTOM_14
-
CUSTOM_15
public static final WildcardSearchField CUSTOM_15
-
CUSTOM_16
public static final WildcardSearchField CUSTOM_16
-
-
Method Detail
-
values
public static WildcardSearchField[] 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 (WildcardSearchField c : WildcardSearchField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WildcardSearchField 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
-
fromString
public static WildcardSearchField fromString(String name)
-
toString
public String toString()
- Overrides:
toStringin classEnum<WildcardSearchField>
-
-