Package odata.msgraph.client.enums
Enum WindowsDeliveryOptimizationMode
- java.lang.Object
-
- java.lang.Enum<WindowsDeliveryOptimizationMode>
-
- odata.msgraph.client.enums.WindowsDeliveryOptimizationMode
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<WindowsDeliveryOptimizationMode>
public enum WindowsDeliveryOptimizationMode extends Enum<WindowsDeliveryOptimizationMode> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BYPASS_MODEHTTP_ONLYHTTP_WITH_INTERNET_PEERINGHTTP_WITH_PEERING_NATHTTP_WITH_PEERING_PRIVATE_GROUPSIMPLE_DOWNLOADUSER_DEFINED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static WindowsDeliveryOptimizationModevalueOf(String name)Returns the enum constant of this type with the specified name.static WindowsDeliveryOptimizationMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_DEFINED
public static final WindowsDeliveryOptimizationMode USER_DEFINED
-
HTTP_ONLY
public static final WindowsDeliveryOptimizationMode HTTP_ONLY
-
HTTP_WITH_PEERING_NAT
public static final WindowsDeliveryOptimizationMode HTTP_WITH_PEERING_NAT
-
HTTP_WITH_PEERING_PRIVATE_GROUP
public static final WindowsDeliveryOptimizationMode HTTP_WITH_PEERING_PRIVATE_GROUP
-
HTTP_WITH_INTERNET_PEERING
public static final WindowsDeliveryOptimizationMode HTTP_WITH_INTERNET_PEERING
-
SIMPLE_DOWNLOAD
public static final WindowsDeliveryOptimizationMode SIMPLE_DOWNLOAD
-
BYPASS_MODE
public static final WindowsDeliveryOptimizationMode BYPASS_MODE
-
-
Method Detail
-
values
public static WindowsDeliveryOptimizationMode[] 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 (WindowsDeliveryOptimizationMode c : WindowsDeliveryOptimizationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowsDeliveryOptimizationMode 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
-
-