public enum GraphicalStyles extends Enum<GraphicalStyles>
| Enum Constant and Description |
|---|
FINE_ART |
ILLUSTRATION |
NONE |
PHOTOGRAPHY |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static GraphicalStyles |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphicalStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicalStyles NONE
public static final GraphicalStyles FINE_ART
public static final GraphicalStyles PHOTOGRAPHY
public static final GraphicalStyles ILLUSTRATION
public static GraphicalStyles[] values()
for (GraphicalStyles c : GraphicalStyles.values()) System.out.println(c);
public static GraphicalStyles 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 nullpublic String toString()
toString in class Enum<GraphicalStyles>Copyright © 2020. All rights reserved.