Package org.skife.config

Examples of org.skife.config.DataAmount


    /* Convenience stuff for overriding
    /**********************************************************************
     */

    public BDBJEConfig overrideCacheSize(long cacheSizeInBytes) {
        cacheSize = new DataAmount(cacheSizeInBytes);
        return this;
    }
View Full Code Here


        cacheSize = new DataAmount(cacheSizeInBytes);
        return this;
    }

    public BDBJEConfig overrideCacheSize(String cacheSizeDesc) {
        cacheSize = new DataAmount(cacheSizeDesc);
        return this;
    }
View Full Code Here

TOP

Related Classes of org.skife.config.DataAmount

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.