Package cascading.lingual.common

Examples of cascading.lingual.common.PropertiesConverter


      .withRequiredArg();

    show = parser.accepts( "show", "shows properties assigned to a schema, table, stereotype, format, or provider" );

    properties = parser.acceptsAll( asList( "props", "properties" ), "key=value pairs" )
      .withRequiredArg().withValuesConvertedBy( new PropertiesConverter() );

    propertiesFromFile = parser.accepts( "properties-file", "filename" )
      .withRequiredArg().withValuesConvertedBy( new PropertiesFileConverter() );

    extensions = parser.acceptsAll( asList( "exts", "extensions" ), "file name extension to associate with format, .csv, .tsv, ..." )
View Full Code Here

TOP

Related Classes of cascading.lingual.common.PropertiesConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.