- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for MethodName (0.1 sec)
-
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses))); this.targetClass = targetClass; this.methodName = methodName; this.methodArgClasses = methodArgClasses; } /** * ターゲットの{@link Class}を返します。 * * @return ターゲットの{@link Class} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java
*/ public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes, final Throwable cause) { super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause); this.targetClass = targetClass; this.methodName = methodName; this.argTypes = argTypes; } /** * ターゲットクラスを返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java
private final String containingType; private final String methodName; private final String descriptor; private AccessorKey(String containingType, String methodName, String descriptor) { this.containingType = containingType; this.methodName = methodName; this.descriptor = descriptor; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 13 19:17:41 UTC 2024 - 8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/TestThread.java
} } private static class Request { final String methodName; final Object[] arguments; Request(String methodName, Object[] arguments) { this.methodName = checkNotNull(methodName); this.arguments = checkNotNull(arguments); } } private static class Response { final String methodName; final Object result; final Throwable throwable;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 10.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java
} String methodName = cells.get(0).getTextContent().trim(); Collection<MethodMetaData> methods = classDoc.getClassMetaData().findDeclaredMethods(methodName); if (methods.isEmpty()) { throw new RuntimeException(String.format("No metadata for method '%s.%s()'. Available methods: %s", classDoc.getName(), methodName, classDoc.getClassMetaData().getDeclaredMethodNames()));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt
args: Array<Any>?, ): Any? { val callArgs = args ?: arrayOf<Any?>() val methodName = method.name val returnType = method.returnType if (methodName == "supports" && Boolean::class.javaPrimitiveType == returnType) { return true // ALPN is supported. } else if (methodName == "unsupported" && Void.TYPE == returnType) { this.unsupported = true // Peer doesn't support ALPN.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java
/** このメソッドを所有するクラスの{@link BeanDesc} */ protected final BeanDesc beanDesc; /** メソッド */ protected final Method method; /** メソッド名 */ protected final String methodName; /** メソッドの引数型の配列 */ protected final Class<?>[] parameterTypes; /** メソッドの戻り値型 */ protected final Class<?> returnType; /** パラメータ化された引数型の情報 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 7.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TestThread.java
} } private static class Request { final String methodName; final Object[] arguments; Request(String methodName, Object[] arguments) { this.methodName = checkNotNull(methodName); this.arguments = checkNotNull(arguments); } } private static class Response { final String methodName; final Object result; final Throwable throwable;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
/** * シグニチャの文字列表現を返します。 * * @param methodName * メソッド名。{@literal null}や空文字列であってはいけません * @param argTypes * 引数型のな並び * @return シグニチャの文字列表現 */ public static String getSignature(final String methodName, final Class<?>... argTypes) { assertArgumentNotEmpty("methodName", methodName); final StringBuilder buf = new StringBuilder(100);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} @Override public MethodDesc[] getMethodDescs(final String methodName) { assertArgumentNotEmpty("methodName", methodName); final MethodDesc[] methodDescs = methodDescsCache.get(methodName); if (methodDescs == null) { throw new MethodNotFoundRuntimeException(beanClass, methodName, null); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0)