Package odata.msgraph.client.enums
Enum SynchronizationJobRestartScope
- java.lang.Object
-
- java.lang.Enum<SynchronizationJobRestartScope>
-
- odata.msgraph.client.enums.SynchronizationJobRestartScope
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<SynchronizationJobRestartScope>
public enum SynchronizationJobRestartScope extends Enum<SynchronizationJobRestartScope> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTOR_DATA_STOREESCROWSFORCE_DELETESFULLNONEQUARANTINE_STATEWATERMARK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static SynchronizationJobRestartScopevalueOf(String name)Returns the enum constant of this type with the specified name.static SynchronizationJobRestartScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SynchronizationJobRestartScope NONE
-
CONNECTOR_DATA_STORE
public static final SynchronizationJobRestartScope CONNECTOR_DATA_STORE
-
ESCROWS
public static final SynchronizationJobRestartScope ESCROWS
-
WATERMARK
public static final SynchronizationJobRestartScope WATERMARK
-
QUARANTINE_STATE
public static final SynchronizationJobRestartScope QUARANTINE_STATE
-
FULL
public static final SynchronizationJobRestartScope FULL
-
FORCE_DELETES
public static final SynchronizationJobRestartScope FORCE_DELETES
-
-
Method Detail
-
values
public static SynchronizationJobRestartScope[] 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 (SynchronizationJobRestartScope c : SynchronizationJobRestartScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SynchronizationJobRestartScope 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
-
-