public enum Strikethrough extends Enum<Strikethrough>
| Modifier and Type | Field and Description |
|---|---|
static Strikethrough |
DEFAULT
The default setting when the
Format for Strikethrough is null; |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isStricken() |
static Strikethrough |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strikethrough[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Strikethrough NONE
public static final Strikethrough ON
public static final Strikethrough DEFAULT
Format for Strikethrough is null;public static Strikethrough[] values()
for (Strikethrough c : Strikethrough.values()) System.out.println(c);
public static Strikethrough 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 isStricken()
Copyright © 2014–2017 Smartsheet. All rights reserved.