|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TextSearchOperatorType>
org.sdmx.resources.sdmxml.schemas.v2_1.common.TextSearchOperatorType
public enum TextSearchOperatorType
Java class for TextSearchOperatorType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TextSearchOperatorType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="contains"/>
<enumeration value="startsWith"/>
<enumeration value="endsWith"/>
<enumeration value="doesNotContain"/>
<enumeration value="doesNotStartWith"/>
<enumeration value="doesNotEndWith"/>
</restriction>
</simpleType>
| Enum Constant Summary | |
|---|---|
CONTAINS
The text being searched must contain the supplied text. |
|
DOES_NOT_CONTAIN
The text being searched cannot contain the supplied text. |
|
DOES_NOT_END_WITH
The text being searched cannot end with the supplied text. |
|
DOES_NOT_START_WITH
The text being searched cannot start with the supplied text. |
|
ENDS_WITH
The text being searched must end with the supplied text. |
|
STARTS_WITH
The text being searched must start with the supplied text. |
|
| Method Summary | |
|---|---|
static TextSearchOperatorType |
fromValue(String v)
|
String |
value()
|
static TextSearchOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TextSearchOperatorType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TextSearchOperatorType CONTAINS
public static final TextSearchOperatorType STARTS_WITH
public static final TextSearchOperatorType ENDS_WITH
public static final TextSearchOperatorType DOES_NOT_CONTAIN
public static final TextSearchOperatorType DOES_NOT_START_WITH
public static final TextSearchOperatorType DOES_NOT_END_WITH
| Method Detail |
|---|
public static TextSearchOperatorType[] values()
for (TextSearchOperatorType c : TextSearchOperatorType.values()) System.out.println(c);
public static TextSearchOperatorType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String value()
public static TextSearchOperatorType fromValue(String v)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||