Examples of GenericArrayType


Examples of java.lang.reflect.GenericArrayType

      return typeDescription;
    }
    else if (type instanceof GenericArrayType)
    {
      GenericArrayType gType = (GenericArrayType) type;
      String typeDescription = "array of " + getTypeDescription(gType.getGenericComponentType());
      return typeDescription;
    }
    else if (type instanceof WildcardType)
    {
      WildcardType wType = (WildcardType) type;
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

        } else if (cls instanceof ParameterizedType) {
            for (Type t2 : ((ParameterizedType)cls).getActualTypeArguments()) {
                addType(t2, classes);
            }
        } else if (cls instanceof GenericArrayType) {
            GenericArrayType gt = (GenericArrayType)cls;
            addType(gt.getGenericComponentType(), classes);
        }
    }
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

   
    public static Class getClassFromType(Type t) {
        if (t instanceof Class) {
            return (Class)t;
        } else if (t instanceof GenericArrayType) {
            GenericArrayType g = (GenericArrayType)t;
            return Array.newInstance(getClassFromType(g.getGenericComponentType()), 0).getClass();
        } else if (t instanceof ParameterizedType) {
            ParameterizedType p = (ParameterizedType)t;
            return getClassFromType(p.getRawType());
        }
        //TypeVariable and WildCardType are not handled as it is unlikely such Types will
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

    private Class getClass(Type type) {
        if (type instanceof Class) {
            return (Class)type;
        } else if (type instanceof GenericArrayType) {
            GenericArrayType gt = (GenericArrayType)type;
            Class compType = getClass(gt.getGenericComponentType());
            return java.lang.reflect.Array.newInstance(compType, 0).getClass();
        }
        return Object.class;
    }
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

    private Class getClass(Type type) {
        if (type instanceof Class) {
            return (Class)type;
        } else if (type instanceof GenericArrayType) {
            GenericArrayType gt = (GenericArrayType)type;
            Class compType = getClass(gt.getGenericComponentType());
            return java.lang.reflect.Array.newInstance(compType, 0).getClass();
        }
        return Object.class;
    }
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

    public <T> Template<T> buildTemplate(Type arrayType) {
  Type baseType;
  Class<?> baseClass;
  int dim = 1;
  if (arrayType instanceof GenericArrayType) {
      GenericArrayType type = (GenericArrayType) arrayType;
      baseType = type.getGenericComponentType();
      while (baseType instanceof GenericArrayType) {
    baseType = ((GenericArrayType) baseType).getGenericComponentType();
    dim += 1;
      }
      if (baseType instanceof ParameterizedType) {
    baseClass = (Class<?>) ((ParameterizedType) baseType).getRawType();
      } else {
    baseClass = (Class<?>) baseType;
      }
  } else {
      Class<?> type = (Class<?>) arrayType;
      baseClass = type.getComponentType();
      while (baseClass.isArray()) {
    baseClass = baseClass.getComponentType();
    dim += 1;
      }
      baseType = baseClass;
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

         Type rawType = parameterizedType.getRawType();
         return (Class<?>) rawType;
      }
      else if (type instanceof GenericArrayType)
      {
         final GenericArrayType genericArrayType = (GenericArrayType) type;
         final Class<?> componentRawType = getRawType(genericArrayType.getGenericComponentType());
         return Array.newInstance(componentRawType, 0).getClass();
      }
      else if (type instanceof TypeVariable)
      {
         final TypeVariable typeVar = (TypeVariable) type;
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

         Type rawType = parameterizedType.getRawType();
         return (Class<?>) rawType;
      }
      else if (type instanceof GenericArrayType)
      {
         final GenericArrayType genericArrayType = (GenericArrayType) type;
         final Class<?> componentRawType = getRawType(genericArrayType.getGenericComponentType());
         return Array.newInstance(componentRawType, 0).getClass();
      }
      return null;
   }
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

         Type componentGenericType = parameterizedType.getActualTypeArguments()[0];
         return getRawType(componentGenericType);
      }
      else if (genericType instanceof GenericArrayType)
      {
         final GenericArrayType genericArrayType = (GenericArrayType) genericType;
         Type componentGenericType = genericArrayType.getGenericComponentType();
         return getRawType(componentGenericType);
      }
      else if (type.isArray())
      {
         return type.getComponentType();
View Full Code Here

Examples of java.lang.reflect.GenericArrayType

      clazz = (Class<?>) type;
    } else if (type instanceof ParameterizedType) {
      ParameterizedType pt = (ParameterizedType) type;
      clazz = (Class<?>) pt.getRawType();
    } else if (type instanceof GenericArrayType) {
      GenericArrayType gat = (GenericArrayType) type;
      Class<?> typeClass = getTypeClass(gat.getGenericComponentType());
      return Array.newInstance(typeClass, 0).getClass();
    } else if (type instanceof TypeVariable) {
      TypeVariable tv = (TypeVariable) type;
      Type[] ts = tv.getBounds();
      if (ts != null && ts.length > 0)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.