Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 2 (11.1.2.2.0)

E17492-03


oracle.dss.graph
Enum GraphConstants.InteractiveSliceBehavior

java.lang.Object
  extended by java.lang.Enum<GraphConstants.InteractiveSliceBehavior>
      extended by oracle.dss.graph.GraphConstants.InteractiveSliceBehavior

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GraphConstants.InteractiveSliceBehavior>
Enclosing interface:
GraphConstants

public static enum GraphConstants.InteractiveSliceBehavior
extends java.lang.Enum<GraphConstants.InteractiveSliceBehavior>

Specifies the types of interactivity behavior that are enabled for slices of the graph.
NONE: No interactive slice behavior enabled
EXPLODE: Click to explode slices in a pie graph
EXPLODE_ALL: Add explodeAll and uniteAll options to the context menu
Note: Interactivity behavior is only supported in the Flash imageFormat.


Enum Constant Summary
EXPLODE
           
EXPLODE_ALL
           
NONE
           

 

Method Summary
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.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

NONE

public static final GraphConstants.InteractiveSliceBehavior NONE

EXPLODE

public static final GraphConstants.InteractiveSliceBehavior EXPLODE

EXPLODE_ALL

public static final GraphConstants.InteractiveSliceBehavior EXPLODE_ALL

Method Detail

values

public static GraphConstants.InteractiveSliceBehavior[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GraphConstants.InteractiveSliceBehavior c : GraphConstants.InteractiveSliceBehavior.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GraphConstants.InteractiveSliceBehavior valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

convertStringToEnumSet

public static java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> convertStringToEnumSet(java.lang.String type)
Returns the EnumSet of InteractiveSliceBehavior that encapsulates the information in the given String. The EnumSet will be empty if no valid InteractiveSliceBehavior constants are specified.
Parameters:
type - the String of InteractiveSliceBehavior to use
Returns:

convertTagStringToEnumSet

public 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. The EnumSet will be empty if no valid InteractiveSliceBehavior constants are specified.
Parameters:
type - the ADF Faces attribute String of InteractiveSliceBehavior to use
Returns:
For internal use only. Application developers should not use this

convertEnumSetToString

public static java.lang.String convertEnumSetToString(java.util.EnumSet<GraphConstants.InteractiveSliceBehavior> set)
Returns the String representation of the EnumSet of InteractiveSliceBehavior that is given. The String will return "NONE" if the EnumSet is empty.
Parameters:
set - the EnumSet that will be converted to String.
Returns:

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 2 (11.1.2.2.0)

E17492-03


Copyright © 1997, 2012, Oracle. All rights reserved.