public enum DgnSurface3DType extends Enum<DgnSurface3DType>
Represents 3d surface type
| Enum Constant and Description |
|---|
Solid
Solid 3d element
|
Surface
3d surface
|
| Modifier and Type | Method and Description |
|---|---|
static DgnSurface3DType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DgnSurface3DType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DgnSurface3DType Surface
3d surface
public static final DgnSurface3DType Solid
Solid 3d element
public static DgnSurface3DType[] values()
for (DgnSurface3DType c : DgnSurface3DType.values()) System.out.println(c);
public static DgnSurface3DType 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.