Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-03


oracle.dss.graph
Enum DataStyleType

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

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataStyleType>

public enum DataStyleType
extends java.lang.Enum<DataStyleType>

Specifies a data style type.
UNDERLAY_SHAPE: The shape of the marker underlay.
UNDERLAY_COLOR: The color of the marker underlay.


Nested Class Summary
static class DataStyleType.Shape
          Specified valid shapes for DataStyleType.UNDERLAY_SHAPE

 

Enum Constant Summary
MARKER_COLOR
           
MARKER_SHAPE
           
UNDERLAY_COLOR
           
UNDERLAY_SHAPE
           

 

Method Summary
static DataStyleType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataStyleType[] 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

UNDERLAY_SHAPE

public static final DataStyleType UNDERLAY_SHAPE

UNDERLAY_COLOR

public static final DataStyleType UNDERLAY_COLOR

MARKER_SHAPE

public static final DataStyleType MARKER_SHAPE

MARKER_COLOR

public static final DataStyleType MARKER_COLOR

Method Detail

values

public static DataStyleType[] 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 (DataStyleType c : DataStyleType.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DataStyleType 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

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-03


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