Modifier and Type | Method and Description |
---|---|
static <K,V> Mapping<K,V> |
augment(Mapping<K,V> in,
Object... keysAndValues)
Equivalent with
union(Mapping, Mapping) , where the first argument is in and the second is
constructed from the given keyValuePairs. |
static <K,V> Mapping<K,V> |
constant(V constantValue) |
static <K,V> Predicate<K> |
containsKeyPredicate(Mapping<K,V> delegate) |
static <K,V,EX extends Throwable> |
containsKeyPredicateWhichThrows(Mapping<K,V> delegate) |
static <K,V> Mapping<K,V> |
fromMap(Map<K,V> map)
|
static <K,T> T |
get(Mapping<? extends K,?> mapping,
Object key,
Class<T> targetType)
Invokes
Mapping.get(Object) on the mapping and, if the result is not null , converts
it to the given targetType. |
static <K> Object |
getNonNull(Mapping<K,?> mapping,
String key) |
static <K,T> T |
getNonNull(Mapping<K,?> mapping,
String key,
Class<T> targetType) |
static <K,V> Mapping<K,V> |
mapping(Object... keysAndValues) |
static <K,V> Mapping<K,V> |
none() |
static <K,V> Mapping<K,V> |
override(Mapping<K,V> in,
Object... keysAndValues)
Equivalent with
union(Mapping, Mapping) , where the first argument is constructed from the given keyValuePairs and the second argument is in. |
static Mapping<String,Object> |
propertiesOf(Object subject)
Returns a mapping of property names to property values for the given subject object.
|
static <K,V> Mapping<K,V> |
union(Mapping<K,V> op1,
Mapping<K,V> op2)
Returns a mapping that implements the "union" of two mappings.
|
public static <K,V> Mapping<K,V> mapping(Object... keysAndValues)
keysAndValues
- An alternating sequence of keys and values; even elements must have type K
, odd
elements must have type V
or Producer<V>
public static Mapping<String,Object> propertiesOf(Object subject)
The existence of a property "propertyName
" is determined by the existence of one of the
following, in this order:
getPropertyName()
"
isPropertyName()
"
hasPropertyName()
"
propertyName()
"
propertyName
"
@Nullable public static <K,T> T get(Mapping<? extends K,?> mapping, Object key, Class<T> targetType)
Mapping.get(Object)
on the mapping and, if the result is not null
, converts
it to the given targetType.IllegalArgumentException
- The type of the value of the property is not assignable to T
public static <K> Object getNonNull(Mapping<K,?> mapping, String key)
IllegalArgumentException
- The mapping does not contain the given keyIllegalArgumentException
- The mapping contains the key, but the mapped value is
null
public static <K,T> T getNonNull(Mapping<K,?> mapping, String key, Class<T> targetType)
IllegalArgumentException
- The mapping does not contain the given keyIllegalArgumentException
- The mapping contains the key, but the mapped value is
null
IllegalArgumentException
- The mapping contains the key, but the mapped value is not
assignable to T
public static <K,V> Mapping<K,V> union(Mapping<K,V> op1, Mapping<K,V> op2)
For the returned Mapping
, the following conditions apply:
null
iff neither of op1 and op2 contain the key.
public static <K,V> Mapping<K,V> augment(Mapping<K,V> in, Object... keysAndValues)
union(Mapping, Mapping)
, where the first argument is in and the second is
constructed from the given keyValuePairs.keysAndValues
- An alternating sequence of keys and values; even elements must have type K
, odd
elements must have type V
or Producer<V>
public static <K,V> Mapping<K,V> override(Mapping<K,V> in, Object... keysAndValues)
union(Mapping, Mapping)
, where the first argument is constructed from the given keyValuePairs
and the second argument is in.keysAndValues
- An alternating sequence of keys and values; even elements must have type K
, odd
elements must have type V
or Producer<V>
public static <K,V> Mapping<K,V> constant(V constantValue)
public static <K,V> Predicate<K> containsKeyPredicate(Mapping<K,V> delegate)
public static <K,V,EX extends Throwable> PredicateWhichThrows<K,EX> containsKeyPredicateWhichThrows(Mapping<K,V> delegate)
Copyright © 2018 Arno Unkrig. All rights reserved.