public static enum ToStringOptions.FormatStyle extends java.lang.Enum<ToStringOptions.FormatStyle>
Enum Constant and Description |
---|
FULL
Full text style, with the most detail.
|
LONG
Long text style, with lots of detail.
|
MEDIUM
Medium text style, with some detail.
|
SHORT
Short text style, with the least detail.
|
Modifier and Type | Method and Description |
---|---|
static ToStringOptions.FormatStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ToStringOptions.FormatStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToStringOptions.FormatStyle FULL
public static final ToStringOptions.FormatStyle LONG
public static final ToStringOptions.FormatStyle MEDIUM
public static final ToStringOptions.FormatStyle SHORT
public static ToStringOptions.FormatStyle[] values()
for (ToStringOptions.FormatStyle c : ToStringOptions.FormatStyle.values()) System.out.println(c);
public static ToStringOptions.FormatStyle 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 nullCopyright (c) 2014, 2019 1C-Soft LLC and others. Made available under the Eclipse Public License 2.0