Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,256 for isStatic (0.25 sec)

  1. src/main/java/org/codelibs/core/beans/MethodDesc.java

         *
         * @return {@literal public}メソッドの場合は{@literal true}
         */
        boolean isPublic();
    
        /**
         * {@literal static}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal static}メソッドの場合は{@literal true}
         */
        boolean isStatic();
    
        /**
         * {@literal final}メソッドの場合は{@literal true}を返します。
         *
         * @return {@literal final}メソッドの場合は{@literal true}
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/MediaTypeTest.java

    import static com.google.common.net.MediaType.JPEG;
    import static com.google.common.net.MediaType.PLAIN_TEXT_UTF_8;
    import static com.google.common.truth.Truth.assertThat;
    import static java.lang.reflect.Modifier.isFinal;
    import static java.lang.reflect.Modifier.isPublic;
    import static java.lang.reflect.Modifier.isStatic;
    import static java.nio.charset.StandardCharsets.UTF_16;
    import static java.nio.charset.StandardCharsets.UTF_8;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 21.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

    import static com.google.common.net.MediaType.JPEG;
    import static com.google.common.net.MediaType.PLAIN_TEXT_UTF_8;
    import static com.google.common.truth.Truth.assertThat;
    import static java.lang.reflect.Modifier.isFinal;
    import static java.lang.reflect.Modifier.isPublic;
    import static java.lang.reflect.Modifier.isStatic;
    import static java.nio.charset.StandardCharsets.UTF_16;
    import static java.nio.charset.StandardCharsets.UTF_8;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.impl;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    import static org.codelibs.core.misc.AssertionUtil.assertState;
    
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

    import org.jetbrains.kotlin.fir.declarations.utils.classId
    import org.jetbrains.kotlin.fir.declarations.utils.isCompanion
    import org.jetbrains.kotlin.fir.declarations.utils.isLocal
    import org.jetbrains.kotlin.fir.declarations.utils.isStatic
    import org.jetbrains.kotlin.fir.expressions.*
    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.references.*
    import org.jetbrains.kotlin.fir.resolve.ScopeSession
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/FieldUtil.java

        /**
         * {@link Field}オブジェクトによって表される{@code static}フィールドを、指定された新しい値に設定します。
         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @param value
         *            {@literal static}フィールドの新しい値
         * @throws IllegalAccessRuntimeException
         *             基本となるフィールドにアクセスできない場合
         * @see Field#set(Object, Object)
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

        get() = sourceName == SourceNames.kotlinCollection
    
    
    private
    fun isCandidateForExtension(function: ApiFunction): Boolean = function.run {
        name !in functionNameBlackList &&
            isPublic &&
            !isStatic &&
            parameters.none { it.type.isGroovyClosure }
    }
    
    
    private
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     * limitations under the License.
     */
    
    package com.google.common.testing;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Throwables.throwIfUnchecked;
    import static com.google.common.testing.NullPointerTester.isNullable;
    
    import com.google.common.annotations.GwtIncompatible;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

          }
        }
    
        public static final class InMemoryPrintWriter extends PrintWriter {
          public InMemoryPrintWriter() {
            super(new StringWriter());
          }
        }
    
        public static final class DeterministicRandom extends Random {
          @Keep
          public DeterministicRandom() {
            super(0);
          }
        }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 21K bytes
    - Viewed (1)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

          }
        }
    
        public static final class InMemoryPrintWriter extends PrintWriter {
          public InMemoryPrintWriter() {
            super(new StringWriter());
          }
        }
    
        public static final class DeterministicRandom extends Random {
          @Keep
          public DeterministicRandom() {
            super(0);
          }
        }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 20.5K bytes
    - Viewed (0)
Back to top