Package net.webpdf.wsclient.openapi
Enum OperationGoTo3DViewActionGoTo3DView.RelativeEnum
- java.lang.Object
-
- java.lang.Enum<OperationGoTo3DViewActionGoTo3DView.RelativeEnum>
-
- net.webpdf.wsclient.openapi.OperationGoTo3DViewActionGoTo3DView.RelativeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationGoTo3DViewActionGoTo3DView.RelativeEnum>
- Enclosing class:
- OperationGoTo3DViewActionGoTo3DView
public static enum OperationGoTo3DViewActionGoTo3DView.RelativeEnum extends Enum<OperationGoTo3DViewActionGoTo3DView.RelativeEnum>
A view of the 3D annotation that has been defined relative to the currently visualized view. This value is an alternative to \"name\" and \"index\" and does not have to be set if either one of these values are specified. * First = The first view of the 3D annotation. * Last = The last view of the 3D annotation. * Next = The next view of the 3D annotation. * Previous = The previous view of the 3D annotation. * Default = The default view of the 3D annotation.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationGoTo3DViewActionGoTo3DView.RelativeEnumfromValue(String value)StringgetValue()StringtoString()static OperationGoTo3DViewActionGoTo3DView.RelativeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationGoTo3DViewActionGoTo3DView.RelativeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST
public static final OperationGoTo3DViewActionGoTo3DView.RelativeEnum FIRST
-
LAST
public static final OperationGoTo3DViewActionGoTo3DView.RelativeEnum LAST
-
NEXT
public static final OperationGoTo3DViewActionGoTo3DView.RelativeEnum NEXT
-
PREVIOUS
public static final OperationGoTo3DViewActionGoTo3DView.RelativeEnum PREVIOUS
-
DEFAULT
public static final OperationGoTo3DViewActionGoTo3DView.RelativeEnum DEFAULT
-
-
Method Detail
-
values
public static OperationGoTo3DViewActionGoTo3DView.RelativeEnum[] 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 (OperationGoTo3DViewActionGoTo3DView.RelativeEnum c : OperationGoTo3DViewActionGoTo3DView.RelativeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationGoTo3DViewActionGoTo3DView.RelativeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationGoTo3DViewActionGoTo3DView.RelativeEnum>
-
fromValue
public static OperationGoTo3DViewActionGoTo3DView.RelativeEnum fromValue(String value)
-
-