public enum CadIntegralParameterType extends Enum<CadIntegralParameterType>
The Cad integral parameter type.
| Enum Constant and Description |
|---|
Binary
The binary parameter
|
Boolean
The boolean parameter.
|
Double
The double parameter.
|
Integer
The integer parameter.
|
Long
The long parameter
|
Short
The short parameter.
|
String
The string parameter.
|
Unknown
The unknown parameter.
|
| Modifier and Type | Method and Description |
|---|---|
static CadIntegralParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadIntegralParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadIntegralParameterType Unknown
The unknown parameter.
public static final CadIntegralParameterType Boolean
The boolean parameter.
public static final CadIntegralParameterType Double
The double parameter.
public static final CadIntegralParameterType Integer
The integer parameter.
public static final CadIntegralParameterType Short
The short parameter.
public static final CadIntegralParameterType String
The string parameter.
public static final CadIntegralParameterType Long
The long parameter
public static final CadIntegralParameterType Binary
The binary parameter
public static CadIntegralParameterType[] values()
for (CadIntegralParameterType c : CadIntegralParameterType.values()) System.out.println(c);
public static CadIntegralParameterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.