Enum FilterPropString.FilterTypeString
- java.lang.Object
-
- java.lang.Enum<FilterPropString.FilterTypeString>
-
- org.alfresco.repo.node.getchildren.FilterPropString.FilterTypeString
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FilterPropString.FilterTypeString>,FilterType
- Enclosing class:
- FilterPropString
public static enum FilterPropString.FilterTypeString extends java.lang.Enum<FilterPropString.FilterTypeString> implements FilterType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENDSWITHENDSWITH_IGNORECASEEQUALSEQUALS_IGNORECASEMATCHESMATCHES_IGNORECASESTARTSWITHSTARTSWITH_IGNORECASE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterPropString.FilterTypeStringvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FilterPropString.FilterTypeString[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTSWITH_IGNORECASE
public static final FilterPropString.FilterTypeString STARTSWITH_IGNORECASE
-
STARTSWITH
public static final FilterPropString.FilterTypeString STARTSWITH
-
EQUALS_IGNORECASE
public static final FilterPropString.FilterTypeString EQUALS_IGNORECASE
-
EQUALS
public static final FilterPropString.FilterTypeString EQUALS
-
ENDSWITH_IGNORECASE
public static final FilterPropString.FilterTypeString ENDSWITH_IGNORECASE
-
ENDSWITH
public static final FilterPropString.FilterTypeString ENDSWITH
-
MATCHES_IGNORECASE
public static final FilterPropString.FilterTypeString MATCHES_IGNORECASE
-
MATCHES
public static final FilterPropString.FilterTypeString MATCHES
-
-
Method Detail
-
values
public static FilterPropString.FilterTypeString[] 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 (FilterPropString.FilterTypeString c : FilterPropString.FilterTypeString.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterPropString.FilterTypeString valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-