Enum ServiceSettings.Extensions
- java.lang.Object
-
- java.lang.Enum<ServiceSettings.Extensions>
-
- com.openinventor.remoteviz.rendering.ServiceSettings.Extensions
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<ServiceSettings.Extensions>
- Enclosing class:
- ServiceSettings
public static enum ServiceSettings.Extensions extends java.lang.Enum<ServiceSettings.Extensions> implements IntegerValuedEnum
Each enumeration represents an Open Inventor extension. Use setUsedExtensions to activate them.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATIA5READER
CATIA6READER
DWGREADER
HARDCOPY
IGESREADER
IMAGEVIZ
JTREADER
MESHVIZ
MESHVIZXLM
PROEREADER
SOLIDEDGEREADER
SOLIDWORKSREADER
STEPREADER
UGREADER
VDAREADER
VOLUMEVIZ
VOLUMEVIZLDM
XMTREADER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static ServiceSettings.Extensions
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic ServiceSettings.Extensions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ServiceSettings.Extensions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VOLUMEVIZ
public static final ServiceSettings.Extensions VOLUMEVIZ
-
VOLUMEVIZLDM
public static final ServiceSettings.Extensions VOLUMEVIZLDM
-
MESHVIZ
public static final ServiceSettings.Extensions MESHVIZ
-
MESHVIZXLM
public static final ServiceSettings.Extensions MESHVIZXLM
-
IMAGEVIZ
public static final ServiceSettings.Extensions IMAGEVIZ
-
HARDCOPY
public static final ServiceSettings.Extensions HARDCOPY
-
CATIA5READER
public static final ServiceSettings.Extensions CATIA5READER
-
CATIA6READER
public static final ServiceSettings.Extensions CATIA6READER
-
DWGREADER
public static final ServiceSettings.Extensions DWGREADER
-
IGESREADER
public static final ServiceSettings.Extensions IGESREADER
-
JTREADER
public static final ServiceSettings.Extensions JTREADER
-
PROEREADER
public static final ServiceSettings.Extensions PROEREADER
-
SOLIDEDGEREADER
public static final ServiceSettings.Extensions SOLIDEDGEREADER
-
STEPREADER
public static final ServiceSettings.Extensions STEPREADER
-
SOLIDWORKSREADER
public static final ServiceSettings.Extensions SOLIDWORKSREADER
-
UGREADER
public static final ServiceSettings.Extensions UGREADER
-
VDAREADER
public static final ServiceSettings.Extensions VDAREADER
-
XMTREADER
public static final ServiceSettings.Extensions XMTREADER
-
-
Method Detail
-
values
public static ServiceSettings.Extensions[] 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 (ServiceSettings.Extensions c : ServiceSettings.Extensions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceSettings.Extensions valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
valueOf
public static ServiceSettings.Extensions valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-