com.beust.jcommander
Interface IStringConverter<T>
- All Known Implementing Classes:
- BaseConverter, BooleanConverter, CommaSeparatedConverter, FileConverter, IntegerConverter, LongConverter, NoConverter, StringConverter
public interface IStringConverter<T>
An interface that converts strings to any arbitrary type.
If your class implements a constructor that takes a String, this
constructor will be used to instantiate your converter and the
parameter will receive the name of the option that's being parsed,
which can be useful to issue a more useful error message if the
conversion fails.
You can also extend BaseConverter to make your life easier.
- Author:
- cbeust
convert
T convert(String value)
- Returns:
- an object of type created from the parameter value.
Copyright © 2011. All Rights Reserved.