Module com.rezzedup.util.valuables
Package com.rezzedup.util.valuables
Interface Adapter.StandardSet<S>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Adapter<S,BigDecimal>intoBigDecimal()Adapts from the serialized type into big decimals and vice versa.Adapter<S,BigInteger>intoBigInteger()Adapts from the serialized type into big integers and vice versa.Adapter<S,Boolean>intoBoolean()Adapts from the serialized type into booleans and vice versa.Adapter<S,Byte>intoByte()Adapts from the serialized type into bytes and vice versa.Adapter<S,Character>intoCharacter()Adapts from the serialized type into characters and vice versa.Adapter<S,Double>intoDouble()Adapts from the serialized type into doubles and vice versa.<E extends Enum<E>>
Adapter<S,E>intoEnum(Class<E> type)Adapts from the serialized type into enums and vice versa.Adapter<S,Float>intoFloat()Adapts from the serialized type into floats and vice versa.Adapter<S,Integer>intoInteger()Adapts from the serialized type into integers and vice versa.Adapter<S,Long>intoLong()Adapts from the serialized type into longs and vice versa.Adapter<S,Short>intoShort()Adapts from the serialized type into shorts and vice versa.Adapter<S,String>intoString()Adapts from the serialized type into strings and vice versa.Adapter<S,UUID>intoUuid()Adapts from the serialized type into UUIDs and vice versa.
-
-
-
Method Detail
-
intoString
Adapter<S,String> intoString()
Adapts from the serialized type into strings and vice versa.- Returns:
- an adapter for strings
-
intoBoolean
Adapter<S,Boolean> intoBoolean()
Adapts from the serialized type into booleans and vice versa.- Returns:
- an adapter for booleans
-
intoCharacter
Adapter<S,Character> intoCharacter()
Adapts from the serialized type into characters and vice versa.- Returns:
- an adapter for characters
-
intoByte
Adapter<S,Byte> intoByte()
Adapts from the serialized type into bytes and vice versa.- Returns:
- an adapter for bytes
-
intoShort
Adapter<S,Short> intoShort()
Adapts from the serialized type into shorts and vice versa.- Returns:
- an adapter for shorts
-
intoInteger
Adapter<S,Integer> intoInteger()
Adapts from the serialized type into integers and vice versa.- Returns:
- an adapter for integers
-
intoLong
Adapter<S,Long> intoLong()
Adapts from the serialized type into longs and vice versa.- Returns:
- an adapter for longs
-
intoFloat
Adapter<S,Float> intoFloat()
Adapts from the serialized type into floats and vice versa.- Returns:
- an adapter for floats
-
intoDouble
Adapter<S,Double> intoDouble()
Adapts from the serialized type into doubles and vice versa.- Returns:
- an adapter for doubles
-
intoBigInteger
Adapter<S,BigInteger> intoBigInteger()
Adapts from the serialized type into big integers and vice versa.- Returns:
- an adapter for big integers
-
intoBigDecimal
Adapter<S,BigDecimal> intoBigDecimal()
Adapts from the serialized type into big decimals and vice versa.- Returns:
- an adapter for big decimals
-
intoUuid
Adapter<S,UUID> intoUuid()
Adapts from the serialized type into UUIDs and vice versa.- Returns:
- an adapter for UUIDs
-
-