| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<LinePattern>
com.smartgwt.client.types.LinePattern
public enum LinePattern
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 | 
|---|
public static final LinePattern SOLID
public static final LinePattern DOT
public static final LinePattern DASH
public static final LinePattern SHORTDOT
public static final LinePattern SHORTDASH
public static final LinePattern LONGDASH
| Method Detail | 
|---|
public static LinePattern[] values()
for (LinePattern c : LinePattern.values()) System.out.println(c);
public static LinePattern valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getValue()
getValue in interface ValueEnum
  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||