Ejemplo n.º 1
0
 private static boolean getBooleanProperty(
     Function function, String propertyKey, boolean defaultValue) {
   Object value = function.getProperty(propertyKey);
   return value instanceof Boolean ? (Boolean) value : defaultValue;
 }
Ejemplo n.º 2
0
 private static String getStringProperty(Function function, String propertyKey) {
   Object value = function.getProperty(propertyKey);
   return value instanceof String ? (String) value : "";
 }