public enum FxTreeRemoveOp extends java.lang.Enum<FxTreeRemoveOp>
Enum Constant and Description |
---|
Remove
Remove all referenced contents.
|
RemoveSingleFiled
Remove only referenced contents that are not referenced from other nodes.
|
Unfile
Unfile any referenced contents
|
UnfileAll
Unfile all nodes that reference the same content
|
Modifier and Type | Method and Description |
---|---|
static FxTreeRemoveOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FxTreeRemoveOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FxTreeRemoveOp Unfile
public static final FxTreeRemoveOp UnfileAll
public static final FxTreeRemoveOp Remove
public static final FxTreeRemoveOp RemoveSingleFiled
public static FxTreeRemoveOp[] values()
for (FxTreeRemoveOp c : FxTreeRemoveOp.values()) System.out.println(c);
public static FxTreeRemoveOp 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