com.microsoft.exchange.types
Enum ContainmentComparisonType

java.lang.Object
  extended by java.lang.Enum<ContainmentComparisonType>
      extended by com.microsoft.exchange.types.ContainmentComparisonType
All Implemented Interfaces:
Serializable, Comparable<ContainmentComparisonType>

public enum ContainmentComparisonType
extends Enum<ContainmentComparisonType>

Java class for ContainmentComparisonType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ContainmentComparisonType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Exact"/>
     <enumeration value="IgnoreCase"/>
     <enumeration value="IgnoreNonSpacingCharacters"/>
     <enumeration value="Loose"/>
     <enumeration value="IgnoreCaseAndNonSpacingCharacters"/>
     <enumeration value="LooseAndIgnoreCase"/>
     <enumeration value="LooseAndIgnoreNonSpace"/>
     <enumeration value="LooseAndIgnoreCaseAndIgnoreNonSpace"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
EXACT
           
IGNORE_CASE
           
IGNORE_CASE_AND_NON_SPACING_CHARACTERS
           
IGNORE_NON_SPACING_CHARACTERS
           
LOOSE
           
LOOSE_AND_IGNORE_CASE
           
LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE
           
LOOSE_AND_IGNORE_NON_SPACE
           
 
Method Summary
static ContainmentComparisonType fromValue(String v)
           
 String value()
           
static ContainmentComparisonType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ContainmentComparisonType[] 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

EXACT

public static final ContainmentComparisonType EXACT

IGNORE_CASE

public static final ContainmentComparisonType IGNORE_CASE

IGNORE_NON_SPACING_CHARACTERS

public static final ContainmentComparisonType IGNORE_NON_SPACING_CHARACTERS

LOOSE

public static final ContainmentComparisonType LOOSE

IGNORE_CASE_AND_NON_SPACING_CHARACTERS

public static final ContainmentComparisonType IGNORE_CASE_AND_NON_SPACING_CHARACTERS

LOOSE_AND_IGNORE_CASE

public static final ContainmentComparisonType LOOSE_AND_IGNORE_CASE

LOOSE_AND_IGNORE_NON_SPACE

public static final ContainmentComparisonType LOOSE_AND_IGNORE_NON_SPACE

LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE

public static final ContainmentComparisonType LOOSE_AND_IGNORE_CASE_AND_IGNORE_NON_SPACE
Method Detail

values

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

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

valueOf

public static ContainmentComparisonType 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 ContainmentComparisonType fromValue(String v)


Copyright © 2012 Jasig. All Rights Reserved.