Package odata.msgraph.client.beta.enums
Enum PrintFinishing
- java.lang.Object
-
- java.lang.Enum<PrintFinishing>
-
- odata.msgraph.client.beta.enums.PrintFinishing
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<PrintFinishing>
public enum PrintFinishing extends Enum<PrintFinishing> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static PrintFinishingvalueOf(String name)Returns the enum constant of this type with the specified name.static PrintFinishing[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PrintFinishing NONE
-
STAPLE
public static final PrintFinishing STAPLE
-
PUNCH
public static final PrintFinishing PUNCH
-
COVER
public static final PrintFinishing COVER
-
BIND
public static final PrintFinishing BIND
-
SADDLE_STITCH
public static final PrintFinishing SADDLE_STITCH
-
STITCH_EDGE
public static final PrintFinishing STITCH_EDGE
-
STAPLE_TOP_LEFT
public static final PrintFinishing STAPLE_TOP_LEFT
-
STAPLE_BOTTOM_LEFT
public static final PrintFinishing STAPLE_BOTTOM_LEFT
-
STAPLE_TOP_RIGHT
public static final PrintFinishing STAPLE_TOP_RIGHT
-
STAPLE_BOTTOM_RIGHT
public static final PrintFinishing STAPLE_BOTTOM_RIGHT
-
STITCH_LEFT_EDGE
public static final PrintFinishing STITCH_LEFT_EDGE
-
STITCH_TOP_EDGE
public static final PrintFinishing STITCH_TOP_EDGE
-
STITCH_RIGHT_EDGE
public static final PrintFinishing STITCH_RIGHT_EDGE
-
STITCH_BOTTOM_EDGE
public static final PrintFinishing STITCH_BOTTOM_EDGE
-
STAPLE_DUAL_LEFT
public static final PrintFinishing STAPLE_DUAL_LEFT
-
STAPLE_DUAL_TOP
public static final PrintFinishing STAPLE_DUAL_TOP
-
STAPLE_DUAL_RIGHT
public static final PrintFinishing STAPLE_DUAL_RIGHT
-
STAPLE_DUAL_BOTTOM
public static final PrintFinishing STAPLE_DUAL_BOTTOM
-
UNKNOWN_FUTURE_VALUE
public static final PrintFinishing UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static PrintFinishing[] 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 (PrintFinishing c : PrintFinishing.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrintFinishing 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
-
-