Package com.bergerkiller.bukkit.common.conversion.type

Examples of com.bergerkiller.bukkit.common.conversion.type.ObjectArrayConverter


        // Maybe converting to an Object array of a certain component type?
        // Note: Primitives are already dealt with and registered in the map
        final Class<?> componentType = type.getComponentType();
        if (!componentType.isPrimitive()) {
          // Use the ObjectArrayConvertor to deal with this
          converter = new ObjectArrayConverter(componentType);
        }
      } else if (type.isEnum()) {
        // Converting to an enum type - construct a new EnumConverter
        converter = new EnumConverter<T>(type);
      } else {
View Full Code Here

TOP

Related Classes of com.bergerkiller.bukkit.common.conversion.type.ObjectArrayConverter

Copyright © 2018 www.massapicom. 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.