Package | Description |
---|---|
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static InvalidCastBehaviour |
InvalidCastBehaviour.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidCastBehaviour[] |
InvalidCastBehaviour.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <TSource,TDest> |
Linq.cast(java.lang.Iterable<TSource> values,
java.lang.Class<TDest> destinationClass,
InvalidCastBehaviour castBehaviour)
Casts a sequence of values of a certain type to a sequence of values of another type, using the specified behaviour upon the event of a
cast failure.
|
static <TSource,TDest> |
Linq.cast(TSource[] values,
java.lang.Class<TDest> destClass,
InvalidCastBehaviour castBehaviour)
Casts an array of values of a certain type to an array of values of another type, using the specified behaviour upon the event of a
cast failure.
|