com.microsoft.exchange.types
Enum MapiPropertyTypeType

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

public enum MapiPropertyTypeType
extends Enum<MapiPropertyTypeType>

Java class for MapiPropertyTypeType.

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

 <simpleType name="MapiPropertyTypeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="ApplicationTime"/>
     <enumeration value="ApplicationTimeArray"/>
     <enumeration value="Binary"/>
     <enumeration value="BinaryArray"/>
     <enumeration value="Boolean"/>
     <enumeration value="CLSID"/>
     <enumeration value="CLSIDArray"/>
     <enumeration value="Currency"/>
     <enumeration value="CurrencyArray"/>
     <enumeration value="Double"/>
     <enumeration value="DoubleArray"/>
     <enumeration value="Error"/>
     <enumeration value="Float"/>
     <enumeration value="FloatArray"/>
     <enumeration value="Integer"/>
     <enumeration value="IntegerArray"/>
     <enumeration value="Long"/>
     <enumeration value="LongArray"/>
     <enumeration value="Null"/>
     <enumeration value="Object"/>
     <enumeration value="ObjectArray"/>
     <enumeration value="Short"/>
     <enumeration value="ShortArray"/>
     <enumeration value="SystemTime"/>
     <enumeration value="SystemTimeArray"/>
     <enumeration value="String"/>
     <enumeration value="StringArray"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
APPLICATION_TIME
           
APPLICATION_TIME_ARRAY
           
BINARY
           
BINARY_ARRAY
           
BOOLEAN
           
CLSID
           
CLSID_ARRAY
           
CURRENCY
           
CURRENCY_ARRAY
           
DOUBLE
           
DOUBLE_ARRAY
           
ERROR
           
FLOAT
           
FLOAT_ARRAY
           
INTEGER
           
INTEGER_ARRAY
           
LONG
           
LONG_ARRAY
           
NULL
           
OBJECT
           
OBJECT_ARRAY
           
SHORT
           
SHORT_ARRAY
           
STRING
           
STRING_ARRAY
           
SYSTEM_TIME
           
SYSTEM_TIME_ARRAY
           
 
Method Summary
static MapiPropertyTypeType fromValue(String v)
           
 String value()
           
static MapiPropertyTypeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MapiPropertyTypeType[] 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

APPLICATION_TIME

public static final MapiPropertyTypeType APPLICATION_TIME

APPLICATION_TIME_ARRAY

public static final MapiPropertyTypeType APPLICATION_TIME_ARRAY

BINARY

public static final MapiPropertyTypeType BINARY

BINARY_ARRAY

public static final MapiPropertyTypeType BINARY_ARRAY

BOOLEAN

public static final MapiPropertyTypeType BOOLEAN

CLSID

public static final MapiPropertyTypeType CLSID

CLSID_ARRAY

public static final MapiPropertyTypeType CLSID_ARRAY

CURRENCY

public static final MapiPropertyTypeType CURRENCY

CURRENCY_ARRAY

public static final MapiPropertyTypeType CURRENCY_ARRAY

DOUBLE

public static final MapiPropertyTypeType DOUBLE

DOUBLE_ARRAY

public static final MapiPropertyTypeType DOUBLE_ARRAY

ERROR

public static final MapiPropertyTypeType ERROR

FLOAT

public static final MapiPropertyTypeType FLOAT

FLOAT_ARRAY

public static final MapiPropertyTypeType FLOAT_ARRAY

INTEGER

public static final MapiPropertyTypeType INTEGER

INTEGER_ARRAY

public static final MapiPropertyTypeType INTEGER_ARRAY

LONG

public static final MapiPropertyTypeType LONG

LONG_ARRAY

public static final MapiPropertyTypeType LONG_ARRAY

NULL

public static final MapiPropertyTypeType NULL

OBJECT

public static final MapiPropertyTypeType OBJECT

OBJECT_ARRAY

public static final MapiPropertyTypeType OBJECT_ARRAY

SHORT

public static final MapiPropertyTypeType SHORT

SHORT_ARRAY

public static final MapiPropertyTypeType SHORT_ARRAY

SYSTEM_TIME

public static final MapiPropertyTypeType SYSTEM_TIME

SYSTEM_TIME_ARRAY

public static final MapiPropertyTypeType SYSTEM_TIME_ARRAY

STRING

public static final MapiPropertyTypeType STRING

STRING_ARRAY

public static final MapiPropertyTypeType STRING_ARRAY
Method Detail

values

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

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

valueOf

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


Copyright © 2012 Jasig. All Rights Reserved.