public static enum CommandLineRunner.FormattingOption extends java.lang.Enum<CommandLineRunner.FormattingOption>
Enum Constant and Description |
---|
PRETTY_PRINT |
PRINT_INPUT_DELIMITER |
SINGLE_QUOTES |
Modifier and Type | Method and Description |
---|---|
static CommandLineRunner.FormattingOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandLineRunner.FormattingOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandLineRunner.FormattingOption PRETTY_PRINT
public static final CommandLineRunner.FormattingOption PRINT_INPUT_DELIMITER
public static final CommandLineRunner.FormattingOption SINGLE_QUOTES
public static CommandLineRunner.FormattingOption[] values()
for (CommandLineRunner.FormattingOption c : CommandLineRunner.FormattingOption.values()) System.out.println(c);
public static CommandLineRunner.FormattingOption 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 © 2009-2020 Google. All Rights Reserved.