Package odata.msgraph.client.beta.enums
Enum PrintMediaType
- java.lang.Object
-
- java.lang.Enum<PrintMediaType>
-
- odata.msgraph.client.beta.enums.PrintMediaType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<PrintMediaType>
public enum PrintMediaType extends Enum<PrintMediaType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUOUSCONTINUOUS_LONGCONTINUOUS_SHORTENVELOPEENVELOPE_PLAINENVELOPE_WINDOWLABELSMULTI_LAYERMULTI_PART_FORMSCREENSCREEN_PAGEDSTATIONERYTRANSPARENCY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static PrintMediaTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PrintMediaType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATIONERY
public static final PrintMediaType STATIONERY
-
TRANSPARENCY
public static final PrintMediaType TRANSPARENCY
-
ENVELOPE
public static final PrintMediaType ENVELOPE
-
ENVELOPE_PLAIN
public static final PrintMediaType ENVELOPE_PLAIN
-
CONTINUOUS
public static final PrintMediaType CONTINUOUS
-
SCREEN
public static final PrintMediaType SCREEN
-
SCREEN_PAGED
public static final PrintMediaType SCREEN_PAGED
-
CONTINUOUS_LONG
public static final PrintMediaType CONTINUOUS_LONG
-
CONTINUOUS_SHORT
public static final PrintMediaType CONTINUOUS_SHORT
-
ENVELOPE_WINDOW
public static final PrintMediaType ENVELOPE_WINDOW
-
MULTI_PART_FORM
public static final PrintMediaType MULTI_PART_FORM
-
MULTI_LAYER
public static final PrintMediaType MULTI_LAYER
-
LABELS
public static final PrintMediaType LABELS
-
-
Method Detail
-
values
public static PrintMediaType[] 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 (PrintMediaType c : PrintMediaType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrintMediaType 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
-
-