public enum ValidatorTypeForUnionTypes extends Enum<ValidatorTypeForUnionTypes>
| Enum Constant and Description |
|---|
INT_TYPE_CONFLICT
When conflict is there for int32 and uInt16.
|
LONG_TYPE_CONFLICT
When conflict is there for int64 and uInt32.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidatorTypeForUnionTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidatorTypeForUnionTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidatorTypeForUnionTypes INT_TYPE_CONFLICT
public static final ValidatorTypeForUnionTypes LONG_TYPE_CONFLICT
public static ValidatorTypeForUnionTypes[] values()
for (ValidatorTypeForUnionTypes c : ValidatorTypeForUnionTypes.values()) System.out.println(c);
public static ValidatorTypeForUnionTypes 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 © 2016. All rights reserved.