All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.groupbyinc.util.PropertyUtils Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.groupbyinc.util;

/**
 * Created by osman on 18/09/14.
 */
public class PropertyUtils {

  public static boolean getFlag(String name) {
    String prop = System.getProperty(name);
    return "".equals(prop) || Boolean.parseBoolean(prop);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy