org.sdmx.resources.sdmxml.schemas.v2_1.common
Enum TextSearchOperatorType

java.lang.Object
  extended by java.lang.Enum<TextSearchOperatorType>
      extended by org.sdmx.resources.sdmxml.schemas.v2_1.common.TextSearchOperatorType
All Implemented Interfaces:
Serializable, Comparable<TextSearchOperatorType>

public enum TextSearchOperatorType
extends 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

CONTAINS

public static final TextSearchOperatorType CONTAINS
The text being searched must contain the supplied text.


STARTS_WITH

public static final TextSearchOperatorType STARTS_WITH
The text being searched must start with the supplied text.


ENDS_WITH

public static final TextSearchOperatorType ENDS_WITH
The text being searched must end with the supplied text.


DOES_NOT_CONTAIN

public static final TextSearchOperatorType DOES_NOT_CONTAIN
The text being searched cannot contain the supplied text.


DOES_NOT_START_WITH

public static final TextSearchOperatorType DOES_NOT_START_WITH
The text being searched cannot start with the supplied text.


DOES_NOT_END_WITH

public static final TextSearchOperatorType DOES_NOT_END_WITH
The text being searched cannot end with the supplied text.

Method Detail

values

public static TextSearchOperatorType[] 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 (TextSearchOperatorType c : TextSearchOperatorType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TextSearchOperatorType 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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static TextSearchOperatorType fromValue(String v)


Copyright © 2012. All Rights Reserved.