public enum PropertyRenamingPolicy extends java.lang.Enum<PropertyRenamingPolicy>
Enum Constant and Description |
---|
ALL_UNQUOTED
Rename all properties that aren't explicitly quoted and aren't
externally defined (i.e.
|
OFF
Rename no properties.
|
Modifier and Type | Method and Description |
---|---|
static PropertyRenamingPolicy |
valueOf(java.lang.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 ALL_UNQUOTED
RenameProperties
public static PropertyRenamingPolicy[] values()
for (PropertyRenamingPolicy c : PropertyRenamingPolicy.values()) System.out.println(c);
public static PropertyRenamingPolicy 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-2017 Google. All Rights Reserved.