public enum DrawingPictureType extends java.lang.Enum<DrawingPictureType>
| Enum Constant and Description |
|---|
Stack
Specifies that the picture is sized to repeat a maximum of 15 times in the longest stacked bar.
|
StackScale
Specifies that the picture is sized to a specified number of units and repeated the length of the bar.
|
Stretch
Specifies that the picture is stretched the full length of the stacked bar.
|
| Modifier and Type | Method and Description |
|---|---|
static DrawingPictureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DrawingPictureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawingPictureType Stretch
public static final DrawingPictureType Stack
public static final DrawingPictureType StackScale
public static DrawingPictureType[] values()
for (DrawingPictureType c : DrawingPictureType.values()) System.out.println(c);
public static DrawingPictureType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null