Package odata.msgraph.client.enums
Enum WorkforceIntegrationSupportedEntities
- java.lang.Object
-
- java.lang.Enum<WorkforceIntegrationSupportedEntities>
-
- odata.msgraph.client.enums.WorkforceIntegrationSupportedEntities
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<WorkforceIntegrationSupportedEntities>
public enum WorkforceIntegrationSupportedEntities extends Enum<WorkforceIntegrationSupportedEntities> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONEOFFER_SHIFT_REQUESTOPEN_SHIFTOPEN_SHIFT_REQUESTSHIFTSWAP_REQUESTTIME_CARDTIME_OFFTIME_OFF_REASONTIME_OFF_REQUESTUNKNOWN_FUTURE_VALUEUSER_SHIFT_PREFERENCES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static WorkforceIntegrationSupportedEntitiesvalueOf(String name)Returns the enum constant of this type with the specified name.static WorkforceIntegrationSupportedEntities[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final WorkforceIntegrationSupportedEntities NONE
-
SHIFT
public static final WorkforceIntegrationSupportedEntities SHIFT
-
SWAP_REQUEST
public static final WorkforceIntegrationSupportedEntities SWAP_REQUEST
-
USER_SHIFT_PREFERENCES
public static final WorkforceIntegrationSupportedEntities USER_SHIFT_PREFERENCES
-
OPEN_SHIFT
public static final WorkforceIntegrationSupportedEntities OPEN_SHIFT
-
OPEN_SHIFT_REQUEST
public static final WorkforceIntegrationSupportedEntities OPEN_SHIFT_REQUEST
-
OFFER_SHIFT_REQUEST
public static final WorkforceIntegrationSupportedEntities OFFER_SHIFT_REQUEST
-
UNKNOWN_FUTURE_VALUE
public static final WorkforceIntegrationSupportedEntities UNKNOWN_FUTURE_VALUE
-
TIME_CARD
public static final WorkforceIntegrationSupportedEntities TIME_CARD
-
TIME_OFF_REASON
public static final WorkforceIntegrationSupportedEntities TIME_OFF_REASON
-
TIME_OFF
public static final WorkforceIntegrationSupportedEntities TIME_OFF
-
TIME_OFF_REQUEST
public static final WorkforceIntegrationSupportedEntities TIME_OFF_REQUEST
-
-
Method Detail
-
values
public static WorkforceIntegrationSupportedEntities[] 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 (WorkforceIntegrationSupportedEntities c : WorkforceIntegrationSupportedEntities.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkforceIntegrationSupportedEntities 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
-
-