public enum PropertyRenamingPolicy extends Enum<PropertyRenamingPolicy>
Enum Constant and Description |
---|
AGGRESSIVE_HEURISTIC
Rename properties more heuristically.
|
ALL_UNQUOTED
Rename all properties that aren't explicitly quoted and aren't
externally defined (i.e.
|
HEURISTIC
Rename properties heuristically.
|
OFF
Rename no properties.
|
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static PropertyRenamingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyRenamingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyRenamingPolicy OFF
public static final PropertyRenamingPolicy HEURISTIC
RenamePrototypes
public static final PropertyRenamingPolicy AGGRESSIVE_HEURISTIC
RenamePrototypes
public static final PropertyRenamingPolicy ALL_UNQUOTED
RenameProperties
public static final PropertyRenamingPolicy UNSPECIFIED
public static PropertyRenamingPolicy[] values()
for (PropertyRenamingPolicy c : PropertyRenamingPolicy.values()) System.out.println(c);
public static PropertyRenamingPolicy 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 © 2009-2015 Google. All Rights Reserved.