public enum ZeroToNullConverter extends Enum<ZeroToNullConverter> implements Converter<Number,Object>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
boolean |
canConvert(Class sourceClass,
Class destinationClass)
Returns true if this converter can convert instances of sourceClass to
destinationClass.
|
Object |
convert(Number source)
Converts instance of S to T.
|
static ZeroToNullConverter |
instance() |
static ZeroToNullConverter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZeroToNullConverter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZeroToNullConverter INSTANCE
public static ZeroToNullConverter[] values()
for (ZeroToNullConverter c : ZeroToNullConverter.values()) System.out.println(c);
public static ZeroToNullConverter 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 static ZeroToNullConverter instance()
public boolean canConvert(Class sourceClass, Class destinationClass)
Converter
canConvert
in interface Converter<Number,Object>
sourceClass
- source ClassdestinationClass
- destination ClassCopyright © 2019 JavaLite. All rights reserved.