Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,100 for type (0.14 sec)

  1. android/guava/src/com/google/common/reflect/TypeParameter.java

     */
    public abstract class TypeParameter<T> extends TypeCapture<T> {
    
      final TypeVariable<?> typeVariable;
    
      protected TypeParameter() {
        Type type = capture();
        checkArgument(type instanceof TypeVariable, "%s should be a type variable.", type);
        this.typeVariable = (TypeVariable<?>) type;
      }
    
      @Override
      public final int hashCode() {
        return typeVariable.hashCode();
      }
    
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Parameter.java

        this.type = type;
        this.annotations = ImmutableList.copyOf(annotations);
        this.annotatedType = annotatedType;
      }
    
      /** Returns the type of the parameter. */
      public TypeToken<?> getType() {
        return type;
      }
    
      /** Returns the {@link Invokable} that declares this parameter. */
      public Invokable<?, ?> getDeclaringInvokable() {
        return declaration;
      }
    
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                final Class<?> type,
                final Class<?> enclosingType,
                final ClassLoader loader,
                final ExpressionEvaluator evaluator,
                final ConfigurationListener listener)
                throws ComponentConfigurationException {
            final Object value = fromExpression(configuration, evaluator, type);
            if (type.isInstance(value)) {
                return value;
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertNotPrimitive(type);
        assertEquals(TypeToken.of(Primitives.unwrap((Class<?>) type.getType())), type.unwrap());
      }
    
      private static void assertNotWrapper(TypeToken<?> type) {
        assertSame(type, type.unwrap());
      }
    
      private static void assertNotPrimitiveNorWrapper(TypeToken<?> type) {
        assertNotPrimitive(type);
        assertNotWrapper(type);
      }
    
      private interface BaseInterface {}
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/types/BomTypeProvider.java

        private final Type type;
    
        public BomTypeProvider() {
            this.type = new DefaultType(NAME, Type.LANGUAGE_NONE, "pom", null, new DefaultDependencyProperties());
        }
    
        @Override
        public Type get() {
            return type;
        }
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/types/EarTypeProvider.java

    @Named(EarTypeProvider.NAME)
    @Singleton
    public class EarTypeProvider implements Provider<Type> {
        public static final String NAME = "ear";
    
        private final Type type;
    
        public EarTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "ear",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_INCLUDES_DEPENDENCIES));
        }
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/types/ParTypeProvider.java

    @Named(ParTypeProvider.NAME)
    @Singleton
    public class ParTypeProvider implements Provider<Type> {
        public static final String NAME = "par";
    
        private final Type type;
    
        public ParTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "par",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_INCLUDES_DEPENDENCIES));
        }
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/types/WarTypeProvider.java

    @Named(WarTypeProvider.NAME)
    @Singleton
    public class WarTypeProvider implements Provider<Type> {
        public static final String NAME = "war";
    
        private final Type type;
    
        public WarTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "war",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_INCLUDES_DEPENDENCIES));
        }
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

         */
        @Deprecated
        public DefaultArtifactHandler() {
            this.type = null;
        }
    
        public DefaultArtifactHandler(final String type) {
            this(type, null, null, null, null, false, null, false);
        }
    
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultArtifactHandler(
                final String type,
                final String extension,
                final String classifier,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/types/EjbTypeProvider.java

    @Named(EjbTypeProvider.NAME)
    @Singleton
    public class EjbTypeProvider implements Provider<Type> {
        public static final String NAME = "ejb";
    
        private final Type type;
    
        public EjbTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "jar",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_CLASS_PATH_CONSTITUENT));
        }
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
Back to top