public enum EffectPhase extends java.lang.Enum<EffectPhase>
Enum Constant and Description |
---|
AfterFill
Indicates that the
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase) method is invoked after
the target node is filled. |
AfterOutline
Indicates that the
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase) method is invoked after
the target node is stroked. |
BeforeFill
Indicates that the
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase) method is invoked before
the target node is filled. |
Modifier and Type | Method and Description |
---|---|
static EffectPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EffectPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectPhase BeforeFill
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase)
method is invoked before
the target node is filled.public static final EffectPhase AfterFill
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase)
method is invoked after
the target node is filled.public static final EffectPhase AfterOutline
NodeEffect.apply(com.mindfusion.diagramming.DiagramNode, com.mindfusion.diagramming.DrawParams, com.mindfusion.diagramming.EffectPhase)
method is invoked after
the target node is stroked.public static EffectPhase[] values()
for (EffectPhase c : EffectPhase.values()) System.out.println(c);
public static EffectPhase 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