Package odata.msgraph.client.enums
Enum ObjectDefinitionMetadata
- java.lang.Object
-
- java.lang.Enum<ObjectDefinitionMetadata>
-
- odata.msgraph.client.enums.ObjectDefinitionMetadata
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ObjectDefinitionMetadata>
public enum ObjectDefinitionMetadata extends Enum<ObjectDefinitionMetadata> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASE_OBJECT_NAMECONNECTOR_DATA_STORAGE_REQUIREDEXTENSIONSIS_SOFT_DELETION_SUPPORTEDIS_SYNCHRONIZE_ALL_SUPPORTEDPROPERTY_NAME_ACCOUNT_ENABLEDPROPERTY_NAME_SOFT_DELETED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ObjectDefinitionMetadatavalueOf(String name)Returns the enum constant of this type with the specified name.static ObjectDefinitionMetadata[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPERTY_NAME_ACCOUNT_ENABLED
public static final ObjectDefinitionMetadata PROPERTY_NAME_ACCOUNT_ENABLED
-
PROPERTY_NAME_SOFT_DELETED
public static final ObjectDefinitionMetadata PROPERTY_NAME_SOFT_DELETED
-
IS_SOFT_DELETION_SUPPORTED
public static final ObjectDefinitionMetadata IS_SOFT_DELETION_SUPPORTED
-
IS_SYNCHRONIZE_ALL_SUPPORTED
public static final ObjectDefinitionMetadata IS_SYNCHRONIZE_ALL_SUPPORTED
-
CONNECTOR_DATA_STORAGE_REQUIRED
public static final ObjectDefinitionMetadata CONNECTOR_DATA_STORAGE_REQUIRED
-
EXTENSIONS
public static final ObjectDefinitionMetadata EXTENSIONS
-
BASE_OBJECT_NAME
public static final ObjectDefinitionMetadata BASE_OBJECT_NAME
-
-
Method Detail
-
values
public static ObjectDefinitionMetadata[] 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 (ObjectDefinitionMetadata c : ObjectDefinitionMetadata.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectDefinitionMetadata 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 nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-