public enum ConversionRule extends Enum<ConversionRule>
ConversionRule| Enum Constant and Description | 
|---|
| COLLECTION | 
| CREATE_IF_NULL | 
| ELEMENT | 
| KEY | 
| KEY_PROPERTY | 
| MAP | 
| PROPERTY | 
| Modifier and Type | Method and Description | 
|---|---|
| String | toString() | 
| static ConversionRule | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ConversionRule[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ConversionRule PROPERTY
public static final ConversionRule COLLECTION
public static final ConversionRule MAP
public static final ConversionRule KEY
public static final ConversionRule KEY_PROPERTY
public static final ConversionRule ELEMENT
public static final ConversionRule CREATE_IF_NULL
public static ConversionRule[] values()
for (ConversionRule c : ConversionRule.values()) System.out.println(c);
public static ConversionRule 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 nullpublic String toString()
toString in class Enum<ConversionRule>Copyright © 2000–2020 Apache Software Foundation. All rights reserved.