Class ByteValueConverter

  • All Implemented Interfaces:
    ValueConverter

    public class ByteValueConverter
    extends java.lang.Object
    implements ValueConverter
    A class that handles the conversion of Byte attributes to and from their String representation.
    Author:
    Thomas Morgner
    • Constructor Summary

      Constructors 
      Constructor Description
      ByteValueConverter()
      Creates a new value converter.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toAttributeValue​(java.lang.Object o)
      Converts the attribute to a string.
      java.lang.Object toPropertyValue​(java.lang.String s)
      Converts a string to a Byte.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ByteValueConverter

        public ByteValueConverter()
        Creates a new value converter.
    • Method Detail

      • toAttributeValue

        public java.lang.String toAttributeValue​(java.lang.Object o)
        Converts the attribute to a string.
        Specified by:
        toAttributeValue in interface ValueConverter
        Parameters:
        o - the attribute (Byte expected).
        Returns:
        A string representing the Byte value.
      • toPropertyValue

        public java.lang.Object toPropertyValue​(java.lang.String s)
        Converts a string to a Byte.
        Specified by:
        toPropertyValue in interface ValueConverter
        Parameters:
        s - the string.
        Returns:
        a Byte.