public static enum GraphConstants.InteractiveSliceBehavior extends java.lang.Enum<GraphConstants.InteractiveSliceBehavior>
| Enum Constant and Description | 
|---|
EXPLODE  | 
EXPLODE_ALL  | 
NONE  | 
| Modifier and Type | Method and Description | 
|---|---|
static java.lang.String | 
convertEnumSetToString(java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> set)
Returns the String representation of the EnumSet of InteractiveSliceBehavior
 that is given. 
 | 
static java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> | 
convertStringToEnumSet(java.lang.String type)
Returns the EnumSet of InteractiveSliceBehavior that encapsulates the
 information in the given String. 
 | 
static java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> | 
convertTagStringToEnumSet(java.lang.String type)
Returns the EnumSet of InteractiveSliceBehavior that encapsulates the
 information in the given ADF Faces attribute String. 
 | 
static GraphConstants.InteractiveSliceBehavior | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static GraphConstants.InteractiveSliceBehavior[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GraphConstants.InteractiveSliceBehavior NONE
public static final GraphConstants.InteractiveSliceBehavior EXPLODE
public static final GraphConstants.InteractiveSliceBehavior EXPLODE_ALL
public static GraphConstants.InteractiveSliceBehavior[] values()
for (GraphConstants.InteractiveSliceBehavior c : GraphConstants.InteractiveSliceBehavior.values()) System.out.println(c);
public static GraphConstants.InteractiveSliceBehavior 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 nullpublic static java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> convertStringToEnumSet(java.lang.String type)
type - the String of InteractiveSliceBehavior to use@Concealed public static java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> convertTagStringToEnumSet(java.lang.String type)
type - the ADF Faces attribute String of InteractiveSliceBehavior to usepublic static java.lang.String convertEnumSetToString(java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> set)
set - the EnumSet that will be converted to String.