public enum CadGroupCodeTypes extends Enum<CadGroupCodeTypes>
Cad group code value types
| Enum Constant and Description |
|---|
ArbitraryText
Arbitrary text string
|
BooleanFlag
Boolean flag value
|
Comment
Comment (string)
|
DoublePrecision3DPoint
Double precision 3D point value
|
DoublePrecisionFloat
Double precision floating-point value
|
DoublePrecisionScalarFloat
Double precision scalar floating-point value
|
Int16
16-bit integer value
|
Int32
32-bit integer value
|
Int64
64-bit integer value
|
Long
Long value (32 bit)
|
String
String value
|
String255
String (255-character maximum; less for Unicode strings)
|
StringEx
String (with the introduction of extended symbol names in AutoCAD 2000, the 255-character
limit has been increased to 2049 single-byte characters not including the newline at the end of the line)
|
StringHexBinaryChunk
String representing hex value of binary chunk
|
StringHexHandle
String representing hexadecimal (hex) handle value
|
StringHexIds
String representing hex object IDs
|
Unknown
Unknown group
|
| Modifier and Type | Method and Description |
|---|---|
static CadGroupCodeTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadGroupCodeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadGroupCodeTypes Unknown
Unknown group
public static final CadGroupCodeTypes StringEx
String (with the introduction of extended symbol names in AutoCAD 2000, the 255-character limit has been increased to 2049 single-byte characters not including the newline at the end of the line)
public static final CadGroupCodeTypes String255
String (255-character maximum; less for Unicode strings)
public static final CadGroupCodeTypes StringHexHandle
String representing hexadecimal (hex) handle value
public static final CadGroupCodeTypes ArbitraryText
Arbitrary text string
public static final CadGroupCodeTypes StringHexBinaryChunk
String representing hex value of binary chunk
public static final CadGroupCodeTypes String
String value
public static final CadGroupCodeTypes Comment
Comment (string)
public static final CadGroupCodeTypes StringHexIds
String representing hex object IDs
public static final CadGroupCodeTypes DoublePrecision3DPoint
Double precision 3D point value
public static final CadGroupCodeTypes DoublePrecisionFloat
Double precision floating-point value
public static final CadGroupCodeTypes DoublePrecisionScalarFloat
Double precision scalar floating-point value
public static final CadGroupCodeTypes Int16
16-bit integer value
public static final CadGroupCodeTypes Int32
32-bit integer value
public static final CadGroupCodeTypes Int64
64-bit integer value
public static final CadGroupCodeTypes Long
Long value (32 bit)
public static final CadGroupCodeTypes BooleanFlag
Boolean flag value
public static CadGroupCodeTypes[] values()
for (CadGroupCodeTypes c : CadGroupCodeTypes.values()) System.out.println(c);
public static CadGroupCodeTypes 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.