public enum CadShadowMode extends Enum<CadShadowMode>
Shadow enumeration
| Enum Constant and Description |
|---|
CastAndReceiveShadow
The cast and receive shadow.
|
CastShadow
The cast shadow.
|
IgnoreShadow
The ignore shadow.
|
ReceiveShadow
The receive shadow.
|
| Modifier and Type | Method and Description |
|---|---|
static CadShadowMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadShadowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadShadowMode CastAndReceiveShadow
The cast and receive shadow.
public static final CadShadowMode CastShadow
The cast shadow.
public static final CadShadowMode ReceiveShadow
The receive shadow.
public static final CadShadowMode IgnoreShadow
The ignore shadow.
public static CadShadowMode[] values()
for (CadShadowMode c : CadShadowMode.values()) System.out.println(c);
public static CadShadowMode 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.