Class StringConverterFactory.ByteConverter

java.lang.Object
repast.simphony.parameter.StringConverterFactory.ByteConverter
All Implemented Interfaces:
StringConverter
Enclosing class:
StringConverterFactory

public static class StringConverterFactory.ByteConverter extends Object
  • Constructor Details

    • ByteConverter

      public ByteConverter()
  • Method Details

    • fromString

      public Object fromString(String strRep)
      Description copied from interface: StringConverter
      Creates an Object from a String representation.
      Parameters:
      strRep - the string representation
      Returns:
      the created Object.
    • toString

      public String toString(Object obj)
      Description copied from interface: StringConverter
      Converts the specified object to a String representation and returns that representation. The represenation should be such that fromString can recreate the Object.
      Specified by:
      toString in interface StringConverter
      Parameters:
      obj - the Object to convert.
      Returns:
      a String representation of the Object.