public enum Includes extends Enum<Includes>
| Enum Constant and Description |
|---|
Trim |
WithoutImports |
WithoutPackage |
| Modifier and Type | Method and Description |
|---|---|
static Includes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Includes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Includes WithoutPackage
public static final Includes WithoutImports
public static final Includes Trim
public static Includes[] values()
for (Includes c : Includes.values()) System.out.println(c);
public static Includes 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 nullCopyright © 2023. All rights reserved.