|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PropertyDefinitionFlags>
microsoft.exchange.webservices.data.PropertyDefinitionFlags
public enum PropertyDefinitionFlags
defines how a complex property behaves.
Enum Constant Summary | |
---|---|
AutoInstantiateOnRead
The property is automatically instantiated when it is read. |
|
CanDelete
The property can be deleted. |
|
CanFind
The property can be searched. |
|
CanSet
The property can be set. |
|
CanUpdate
The property can be updated. |
|
MustBeExplicitlyLoaded
The property must be loaded explicitly. |
|
None
No specific behavior. |
|
ReuseInstance
The existing instance of the property is reusable. |
|
UpdateCollectionItems
Only meaningful for "collection" property. |
Method Summary | |
---|---|
static PropertyDefinitionFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PropertyDefinitionFlags[] |
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 PropertyDefinitionFlags None
public static final PropertyDefinitionFlags AutoInstantiateOnRead
public static final PropertyDefinitionFlags ReuseInstance
public static final PropertyDefinitionFlags CanSet
public static final PropertyDefinitionFlags CanUpdate
public static final PropertyDefinitionFlags CanDelete
public static final PropertyDefinitionFlags CanFind
public static final PropertyDefinitionFlags MustBeExplicitlyLoaded
public static final PropertyDefinitionFlags UpdateCollectionItems
Method Detail |
---|
public static PropertyDefinitionFlags[] values()
for (PropertyDefinitionFlags c : PropertyDefinitionFlags.values()) System.out.println(c);
public static PropertyDefinitionFlags valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |