Uses of Interface
org.objectweb.dsrg.sofa.deployment.zeroconf.ValueParser

Packages that use ValueParser
org.objectweb.dsrg.sofa.deployment.zeroconf This package provides implementation of zero configuration server (ZeroConfServer) and client (Configuration). 
 

Uses of ValueParser in org.objectweb.dsrg.sofa.deployment.zeroconf
 

Classes in org.objectweb.dsrg.sofa.deployment.zeroconf that implement ValueParser
 class ListParser<T>
          ValueParser that parses a string into an array of strings and applies another ValueParser on each string.
 

Fields in org.objectweb.dsrg.sofa.deployment.zeroconf declared as ValueParser
static ValueParser<java.lang.Integer> Configuration.INTEGER_PARSER
          A convenient ValueParser for parsing integer values.
static ValueParser<java.lang.String[]> Configuration.STRING_ARRAY_PARSER
          A convenient ValueParser for parsing string arrays.
 

Methods in org.objectweb.dsrg.sofa.deployment.zeroconf with parameters of type ValueParser
<T> T
Configuration.get(java.lang.String key, ValueParser<T> parser)
          Searches for the key key and, if found, parses its value with parser.
 

Constructors in org.objectweb.dsrg.sofa.deployment.zeroconf with parameters of type ValueParser
ListParser(ValueParser<T> itemParser)