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

E17492-01

oracle.dss.graph
Enum GraphConstants.Markers

java.lang.Object
  extended by java.lang.Enum<GraphConstants.Markers>
      extended by oracle.dss.graph.GraphConstants.Markers
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GraphConstants.Markers>
Enclosing interface:
GraphConstants

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

Specifies the types of markers to show on this graph.
NONE - does not display markers
AUTO - the graph decides whether to display markers and which markers to display
HIGH - displays a marker at the greatest value
LOW - displays a marker at the smallest value
FIRST - displays a marker at the first value
LAST - displays a marker at the last value Note: This is currently only supported for Sparkcharts.


Enum Constant Summary
AUTO
           
FIRST
           
HIGH
           
LAST
           
LOW
           
NONE
           
 
Method Summary
static java.lang.String convertEnumSetToString(java.util.EnumSet<GraphConstants.Markers> set)
          Returns the String representation of the EnumSet of Markers that is given.
static java.util.EnumSet<GraphConstants.Markers> convertStringToEnumSet(java.lang.String type)
          Returns the EnumSet of Markers that encapsulates the information in the given String.
static GraphConstants.Markers valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GraphConstants.Markers[] 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.Markers NONE

AUTO

public static final GraphConstants.Markers AUTO

HIGH

public static final GraphConstants.Markers HIGH

LOW

public static final GraphConstants.Markers LOW

FIRST

public static final GraphConstants.Markers FIRST

LAST

public static final GraphConstants.Markers LAST
Method Detail

values

public static GraphConstants.Markers[] 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.Markers c : GraphConstants.Markers.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.Markers 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.Markers> convertStringToEnumSet(java.lang.String type)
Returns the EnumSet of Markers that encapsulates the information in the given String. The EnumSet will be empty if no valid Markers constants are specified.

Parameters:
type - the String of Markers to use
Returns:

convertEnumSetToString

public static java.lang.String convertEnumSetToString(java.util.EnumSet<GraphConstants.Markers> set)
Returns the String representation of the EnumSet of Markers that is given. The String will return "NONE" if the EnumSet is empty.

Parameters:
set - the EnumSet that will be converted to String.
Returns:

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

E17492-01

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