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

com.litongjava.utils.projectvariable.PVU Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.litongjava.utils.projectvariable;



import java.util.Map;

public class PVU {
  public static void add(String key, String commnet, String value, boolean isReadOnly, boolean isSave) {
    ProjectVariableUtil.add(key, commnet, value, isReadOnly, isSave);
  }

  public static void setValue(ProjectVariable variable, boolean isSave) {
    ProjectVariableUtil.setValue(variable, isSave);
  }

  public static String getValue(String key) {
    return ProjectVariableUtil.getValue(key);
  }
  

  public static int size() {
    return ProjectVariableUtil.size();
  }

  public static Map getParameters() {
    return ProjectVariableUtil.getParameters();
  }

  public static boolean getBooleanValue(String key) {
    return getValue(key).equals("true") ? true : false;
  }

  public static boolean isDev() {
    return ProjectVariableUtil.isDev();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy