com.smartgwt.client.types
Enum LinePattern

java.lang.Object
  extended by java.lang.Enum<LinePattern>
      extended by com.smartgwt.client.types.LinePattern
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<LinePattern>

public enum LinePattern
extends Enum<LinePattern>
implements ValueEnum

Supported styles of drawing lines.


Enum Constant Summary
DASH
          Dashed line
DOT
          Dotted line
LONGDASH
          Dashed line, with longer, more widely spaced dashes
SHORTDASH
          Dashed line, with shorter, more tightly spaced dashes
SHORTDOT
          Dotted line, with more tightly spaced dots
SOLID
          Solid line
 
Method Summary
 String getValue()
           
static LinePattern valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LinePattern[] 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

SOLID

public static final LinePattern SOLID
Solid line


DOT

public static final LinePattern DOT
Dotted line


DASH

public static final LinePattern DASH
Dashed line


SHORTDOT

public static final LinePattern SHORTDOT
Dotted line, with more tightly spaced dots


SHORTDASH

public static final LinePattern SHORTDASH
Dashed line, with shorter, more tightly spaced dashes


LONGDASH

public static final LinePattern LONGDASH
Dashed line, with longer, more widely spaced dashes

Method Detail

values

public static LinePattern[] 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 (LinePattern c : LinePattern.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LinePattern valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum