Package com.openinventor.inventor.lock
Enum SoLicensedProduct.SbProducts
- java.lang.Object
-
- java.lang.Enum<SoLicensedProduct.SbProducts>
-
- com.openinventor.inventor.lock.SoLicensedProduct.SbProducts
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoLicensedProduct.SbProducts>
- Enclosing class:
- SoLicensedProduct
public static enum SoLicensedProduct.SbProducts extends java.lang.Enum<SoLicensedProduct.SbProducts> implements IntegerValuedEnum
List of all available Open Inventor products.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AllInventor
HardCopy
ImageViz
IvTuneViewer
LDMWriter
MeshViz
MeshVizExtractor
MeshVizInterface
MeshVizXLM
NumberOfProducts
OivCatia5Reader
Unlocks all Open Inventor products.OivCatia6Reader
OivDwgReader
VSG Reader.OivDxfReader
OivIgesReader
OivJtReader
OivProeReader
OivSolidedgeReader
OivSolidworksReader
OivStepReader
OivUgReader
OivVdaReader
OivXmtReader
OpenInventor
RemoteViz
ScaleVizCluster
ScaleVizWorkstation
VolumeViz
VolumeVizLDM
-
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 SoLicensedProduct.SbProducts
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoLicensedProduct.SbProducts
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoLicensedProduct.SbProducts[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OpenInventor
public static final SoLicensedProduct.SbProducts OpenInventor
-
HardCopy
public static final SoLicensedProduct.SbProducts HardCopy
-
ImageViz
public static final SoLicensedProduct.SbProducts ImageViz
-
MeshVizXLM
public static final SoLicensedProduct.SbProducts MeshVizXLM
-
MeshViz
public static final SoLicensedProduct.SbProducts MeshViz
-
MeshVizInterface
public static final SoLicensedProduct.SbProducts MeshVizInterface
-
MeshVizExtractor
public static final SoLicensedProduct.SbProducts MeshVizExtractor
-
VolumeVizLDM
public static final SoLicensedProduct.SbProducts VolumeVizLDM
-
VolumeViz
public static final SoLicensedProduct.SbProducts VolumeViz
-
LDMWriter
public static final SoLicensedProduct.SbProducts LDMWriter
-
AllInventor
public static final SoLicensedProduct.SbProducts AllInventor
-
OivCatia5Reader
public static final SoLicensedProduct.SbProducts OivCatia5Reader
Unlocks all Open Inventor products.
-
OivCatia6Reader
public static final SoLicensedProduct.SbProducts OivCatia6Reader
-
OivDxfReader
public static final SoLicensedProduct.SbProducts OivDxfReader
-
OivDwgReader
public static final SoLicensedProduct.SbProducts OivDwgReader
VSG Reader.
-
OivIgesReader
public static final SoLicensedProduct.SbProducts OivIgesReader
-
OivJtReader
public static final SoLicensedProduct.SbProducts OivJtReader
-
OivProeReader
public static final SoLicensedProduct.SbProducts OivProeReader
-
OivSolidedgeReader
public static final SoLicensedProduct.SbProducts OivSolidedgeReader
-
OivSolidworksReader
public static final SoLicensedProduct.SbProducts OivSolidworksReader
-
OivStepReader
public static final SoLicensedProduct.SbProducts OivStepReader
-
OivUgReader
public static final SoLicensedProduct.SbProducts OivUgReader
-
OivVdaReader
public static final SoLicensedProduct.SbProducts OivVdaReader
-
OivXmtReader
public static final SoLicensedProduct.SbProducts OivXmtReader
-
IvTuneViewer
public static final SoLicensedProduct.SbProducts IvTuneViewer
-
RemoteViz
public static final SoLicensedProduct.SbProducts RemoteViz
-
ScaleVizCluster
public static final SoLicensedProduct.SbProducts ScaleVizCluster
-
ScaleVizWorkstation
public static final SoLicensedProduct.SbProducts ScaleVizWorkstation
-
NumberOfProducts
public static final SoLicensedProduct.SbProducts NumberOfProducts
-
-
Method Detail
-
values
public static SoLicensedProduct.SbProducts[] 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 (SoLicensedProduct.SbProducts c : SoLicensedProduct.SbProducts.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoLicensedProduct.SbProducts 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 SoLicensedProduct.SbProducts 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.
-
-