Interface Adapter.StandardSet<S>

  • Type Parameters:
    S - serialized type
    Enclosing interface:
    Adapter<S,​D>

    public static interface Adapter.StandardSet<S>
    A collection of standard adapters.
    • 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
      • intoEnum

        <E extends Enum<E>> Adapter<S,​E> intoEnum​(Class<E> type)
        Adapts from the serialized type into enums and vice versa.
        Type Parameters:
        E - enum type
        Parameters:
        type - the enum class
        Returns:
        an adapter for enums