Interface Args.ValueCreator

Enclosing class:
Args

public static interface Args.ValueCreator
  • Method Summary

    Modifier and Type
    Method
    Description
    createValue(Class<?> type, String value)
    Creates a value object of the given type using the given string value representation;
  • Method Details

    • createValue

      Object createValue(Class<?> type, String value)
      Creates a value object of the given type using the given string value representation;
      Parameters:
      type - the type to create an instance of
      value - the string represented value of the object to create
      Returns:
      null if the object could not be created, the value otherwise