public enum ShadowsStyle extends java.lang.Enum<ShadowsStyle>
Diagram.setShadowsStyle(com.mindfusion.diagramming.ShadowsStyle)
method of the Diagram
class.Enum Constant and Description |
---|
None
Do not draw shadows.
|
OneLevel
Draw all shadows at one level at the bottom of the Z order.
|
ZOrder
Draw each shadow right below its item pertaining to the Z order.
|
Modifier and Type | Method and Description |
---|---|
static ShadowsStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShadowsStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShadowsStyle None
public static final ShadowsStyle OneLevel
public static final ShadowsStyle ZOrder
public static ShadowsStyle[] values()
for (ShadowsStyle c : ShadowsStyle.values()) System.out.println(c);
public static ShadowsStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null