- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for propertyNames (0.27 sec)
-
src/main/java/org/codelibs/core/misc/DynamicProperties.java
lastModified = propertiesFile.lastModified(); prop.loadFromXML(in); properties = prop; } @Override public Enumeration<?> propertyNames() { return getProperties().propertyNames(); } @Override public Object put(final Object key, final Object value) { return getProperties().put(key, value); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java
substitute(sp, callback); sp.forEach(properties::setProperty); } public static void substitute(MavenProperties props, Function<String, String> callback) { for (Enumeration<?> e = props.propertyNames(); e.hasMoreElements(); ) { String name = (String) e.nextElement(); String value = props.getProperty(name); if (value == null) { value = callback.apply(name);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
private final String propertyName; /** * {@link IllegalPropertyRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param propertyName * プロパティ名 * @param cause * 原因となった例外 */ public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
private final Class<?> targetClass; private final String propertyName; /** * {@link PropertyNotFoundRuntimeException}を返します。 * * @param targetClass * ターゲットクラス * @param propertyName * プロパティ名 */ public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) { super("ECL0065", asArray(targetClass.getName(), propertyName));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java
rootLocaleFormat("%s must be inherited.", annotationClass), annotationClass.getAnnotation(Inherited.class)); for (String propertyName : new String[] {"value", "absent"}) { Method method = null; try { method = annotationClass.getMethod(propertyName); } catch (NoSuchMethodException e) { throw new AssertionError("Annotation is missing required method", e); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:09:00 UTC 2024 - 4.3K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java
rootLocaleFormat("%s must be inherited.", annotationClass), annotationClass.getAnnotation(Inherited.class)); for (String propertyName : new String[] {"value", "absent"}) { Method method = null; try { method = annotationClass.getMethod(propertyName); } catch (NoSuchMethodException e) { throw new AssertionError("Annotation is missing required method", e); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:09:00 UTC 2024 - 4.3K bytes - Viewed (0)