public enum SymbolShape extends Enum<SymbolShape>
| Enum Constant and Description | 
|---|
| NONEDefault pattern. | 
| RECTANGLEForce a rectangular pattern. | 
| SQUAREForce a square pattern. | 
| Modifier and Type | Method and Description | 
|---|---|
| static SymbolShape | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SymbolShape[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SymbolShape NONE
public static final SymbolShape RECTANGLE
public static final SymbolShape SQUARE
public static SymbolShape[] values()
for (SymbolShape c : SymbolShape.values()) System.out.println(c);
public static SymbolShape valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null
				© 2016 ZIH Corp. All Rights Reserved.