public static enum ITypeConverterRule.ESubType extends Enum<ITypeConverterRule.ESubType>
| Enum Constant and Description |
|---|
ANY_SRC_FIXED_DST
Any source type and fixed destination type.
|
ASSIGNABLE_SRC_FIXED_DST
Assignable source type and fixed destination type.
|
FIXED_SRC_ANY_DST
Fixed source type and any destination type.
|
FIXED_SRC_ASSIGNABLE_DST
Fixed source type and assignable destination type.
|
| Modifier and Type | Method and Description |
|---|---|
static ITypeConverterRule.ESubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ITypeConverterRule.ESubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITypeConverterRule.ESubType FIXED_SRC_ASSIGNABLE_DST
public static final ITypeConverterRule.ESubType FIXED_SRC_ANY_DST
public static final ITypeConverterRule.ESubType ASSIGNABLE_SRC_FIXED_DST
public static final ITypeConverterRule.ESubType ANY_SRC_FIXED_DST
public static ITypeConverterRule.ESubType[] values()
for (ITypeConverterRule.ESubType c : ITypeConverterRule.ESubType.values()) System.out.println(c);
public static ITypeConverterRule.ESubType 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 © 2014–2015 Philip Helger. All rights reserved.