public enum MapperKind extends Enum<MapperKind>
Enum Constant and Description |
---|
SELF
The data object is the mapper, i.e it's a valid
@DataObject annotated type. |
STATIC_METHOD
A public static method
J xxx(T t) or T xxx(J j) . |
Modifier and Type | Method and Description |
---|---|
static MapperKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapperKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static Map<String,MapperKind> |
vars() |
public static final MapperKind SELF
@DataObject
annotated type.public static final MapperKind STATIC_METHOD
J xxx(T t)
or T xxx(J j)
.public static MapperKind[] values()
for (MapperKind c : MapperKind.values()) System.out.println(c);
public static MapperKind 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 Map<String,MapperKind> vars()
Copyright © 2021 Eclipse. All rights reserved.