public enum TypeMappings extends java.lang.Enum<TypeMappings>
| Enum Constant | Description |
|---|---|
COLLECTION |
|
DOUBLE_ARRAY |
|
ENTRY |
|
INT_ARRAY |
|
LONG_ARRAY |
|
MAP |
|
OBJECT_ARRAY |
|
STREAM |
|
TUPLE |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
isInstanceOf(java.lang.Object ob) |
|
<T> one.util.streamex.StreamEx<T> |
streamOf(T ob) |
|
static TypeMappings |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TypeMappings[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeMappings COLLECTION
public static final TypeMappings MAP
public static final TypeMappings ENTRY
public static final TypeMappings OBJECT_ARRAY
public static final TypeMappings DOUBLE_ARRAY
public static final TypeMappings INT_ARRAY
public static final TypeMappings LONG_ARRAY
public static final TypeMappings STREAM
public static final TypeMappings TUPLE
public static TypeMappings[] values()
for (TypeMappings c : TypeMappings.values()) System.out.println(c);
public static TypeMappings valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isInstanceOf(java.lang.Object ob)
public <T> one.util.streamex.StreamEx<T> streamOf(T ob)