Uses of Class
lazyj.ExtProperties

  • Uses of ExtProperties in lazyj

    Subclasses of ExtProperties in lazyj 
    Modifier and Type Class Description
    class  DBProperties  
    class  FallbackProperties  
    Methods in lazyj with parameters of type ExtProperties 
    Modifier and Type Method Description
    void FallbackProperties.addProvider​(ExtProperties config)
    Append a provider to the fallback list (having thus the lowest priority)
    void FallbackProperties.addProvider​(ExtProperties config, boolean first)
    Add another provider to the fallback list, either as the first element (with the highest priority) or as the last one (lowest priority).
    void FallbackProperties.removeProvider​(ExtProperties config)
    Remove a provider from the fallback list
    Constructors in lazyj with parameters of type ExtProperties 
    Constructor Description
    DBFunctions​(ExtProperties configProperties)
    Create a connection to the database using the parameters in this properties file.
    DBFunctions​(ExtProperties configProperties, java.lang.String sQuery)
    Create a connection to the database using the parameters in this properties file, then execute the given query.
    DBProperties​(DBFunctions connection, java.lang.String tableName, java.lang.String keyColumnName, java.lang.String valueColumnName, ExtProperties parentConfig)
    Load the values from the specified database, table name, primary key column and value column.
    DBProperties​(DBFunctions connection, ExtProperties parentConfig)
    Load the values from the specified database.
    ExtProperties​(java.lang.String sBaseConfigDir, java.lang.String sConfigFilename, ExtProperties superProperties)
    Load the contents of a .properties file from the sConfDir path.
    ExtProperties​(java.lang.String sBaseConfigDir, java.lang.String sConfigFilename, ExtProperties superProperties, boolean ignoreMissingIncludes)
    Load the contents of a .properties file from the sConfDir path.
    FallbackProperties​(ExtProperties... configProperties)
    Query the given list of configuration sets in order, returning the first defined value in one of them
    Constructor parameters in lazyj with type arguments of type ExtProperties 
    Constructor Description
    FallbackProperties​(java.util.List<ExtProperties> configProperties)
    A different way of passing the ordered list of configuration sets to look into