public enum Italic extends Enum<Italic>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isItalic() |
static Italic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Italic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Italic DEFAULT
public static Italic[] values()
for (Italic c : Italic.values()) System.out.println(c);
public static Italic 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 boolean isItalic()
Copyright © 2014–2019 Smartsheet. All rights reserved.