Class TypeUtil


  • @Deprecated(since="2021-05-27")
    public class TypeUtil
    extends java.lang.Object
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    TYPE Utilities. Provides various static utility methods for manipulating types and their string representations.
    Since:
    Jetty 4.1
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int CR
      Deprecated.
       
      static int LF
      Deprecated.
       
      static java.lang.Class<?>[] NO_ARGS
      Deprecated.
       
    • Constructor Summary

      Constructors 
      Constructor Description
      TypeUtil()
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static <T> java.util.List<T> asList​(T[] a)
      Deprecated.
      Array to List.
      static java.lang.Object call​(java.lang.Class<?> oClass, java.lang.String methodName, java.lang.Object obj, java.lang.Object[] arg)
      Deprecated.
      static java.lang.Object construct​(java.lang.Class<?> klass, java.lang.Object[] arguments)
      Deprecated.
      static java.lang.Object construct​(java.lang.Class<?> klass, java.lang.Object[] arguments, java.util.Map<java.lang.String,​java.lang.Object> namedArgMap)
      Deprecated.
      static byte convertHexDigit​(byte c)
      Deprecated.
       
      static int convertHexDigit​(char c)
      Deprecated.
       
      static int convertHexDigit​(int c)
      Deprecated.
       
      static void dump​(java.lang.Class<?> c)
      Deprecated.
       
      static void dump​(java.lang.ClassLoader cl)
      Deprecated.
       
      static byte[] fromHexString​(java.lang.String s)
      Deprecated.
       
      static java.lang.Class<?> fromName​(java.lang.String name)
      Deprecated.
      Class from a canonical name for a type.
      static java.net.URI getClassLoaderLocation​(java.lang.Class<?> clazz)
      Deprecated.
       
      static java.net.URI getClassLoaderLocation​(java.lang.Class<?> clazz, java.lang.ClassLoader loader)
      Deprecated.
       
      static java.net.URI getCodeSourceLocation​(java.lang.Class<?> clazz)
      Deprecated.
       
      static java.net.URI getLocationOfClass​(java.lang.Class<?> clazz)
      Deprecated.
      Attempt to find the Location of a loaded Class.
      static java.net.URI getModuleLocation​(java.lang.Class<?> clazz)
      Deprecated.
       
      static java.net.URI getSystemClassLoaderLocation​(java.lang.Class<?> clazz)
      Deprecated.
       
      static boolean isFalse​(java.lang.Object o)
      Deprecated.
       
      static boolean isTrue​(java.lang.Object o)
      Deprecated.
       
      static byte[] parseBytes​(java.lang.String s, int base)
      Deprecated.
       
      static int parseInt​(byte[] b, int offset, int length, int base)
      Deprecated.
      Parse an int from a byte array of ascii characters.
      static int parseInt​(java.lang.String s, int offset, int length, int base)
      Deprecated.
      Parse an int from a substring.
      static java.lang.String toClassReference​(java.lang.Class<?> clazz)
      Deprecated.
      Return the Classpath / Classloader reference for the provided class file.
      static java.lang.String toClassReference​(java.lang.String className)
      Deprecated.
      Return the Classpath / Classloader reference for the provided class file.
      static void toHex​(byte b, java.lang.Appendable buf)
      Deprecated.
       
      static void toHex​(int value, java.lang.Appendable buf)
      Deprecated.
       
      static void toHex​(long value, java.lang.Appendable buf)
      Deprecated.
       
      static java.lang.String toHexString​(byte b)
      Deprecated.
       
      static java.lang.String toHexString​(byte[] b)
      Deprecated.
       
      static java.lang.String toHexString​(byte[] b, int offset, int length)
      Deprecated.
       
      static java.lang.String toName​(java.lang.Class<?> type)
      Deprecated.
      Canonical name for a type.
      static java.lang.String toString​(byte[] bytes, int base)
      Deprecated.
       
      static java.lang.Object valueOf​(java.lang.Class<?> type, java.lang.String value)
      Deprecated.
      Convert String value to instance.
      static java.lang.Object valueOf​(java.lang.String type, java.lang.String value)
      Deprecated.
      Convert String value to instance.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NO_ARGS

        public static final java.lang.Class<?>[] NO_ARGS
        Deprecated.
    • Constructor Detail

      • TypeUtil

        public TypeUtil()
        Deprecated.
    • Method Detail

      • asList

        public static <T> java.util.List<T> asList​(T[] a)
        Deprecated.
        Array to List.

        Works like Arrays.asList(Object...), but handles null arrays.

        Type Parameters:
        T - the array and list entry type
        Parameters:
        a - the array to convert to a list
        Returns:
        a list backed by the array.
      • fromName

        public static java.lang.Class<?> fromName​(java.lang.String name)
        Deprecated.
        Class from a canonical name for a type.
        Parameters:
        name - A class or type name.
        Returns:
        A class , which may be a primitive TYPE field..
      • toName

        public static java.lang.String toName​(java.lang.Class<?> type)
        Deprecated.
        Canonical name for a type.
        Parameters:
        type - A class , which may be a primitive TYPE field.
        Returns:
        Canonical name.
      • toClassReference

        public static java.lang.String toClassReference​(java.lang.Class<?> clazz)
        Deprecated.
        Return the Classpath / Classloader reference for the provided class file.

        Convenience method for the code

         String ref = myObject.getClass().getName().replace('.','/') + ".class";
         
        Parameters:
        clazz - the class to reference
        Returns:
        the classpath reference syntax for the class file
      • toClassReference

        public static java.lang.String toClassReference​(java.lang.String className)
        Deprecated.
        Return the Classpath / Classloader reference for the provided class file.

        Convenience method for the code

         String ref = myClassName.replace('.','/') + ".class";
         
        Parameters:
        className - the class to reference
        Returns:
        the classpath reference syntax for the class file
      • valueOf

        public static java.lang.Object valueOf​(java.lang.Class<?> type,
                                               java.lang.String value)
        Deprecated.
        Convert String value to instance.
        Parameters:
        type - The class of the instance, which may be a primitive TYPE field.
        value - The value as a string.
        Returns:
        The value as an Object.
      • valueOf

        public static java.lang.Object valueOf​(java.lang.String type,
                                               java.lang.String value)
        Deprecated.
        Convert String value to instance.
        Parameters:
        type - classname or type (eg int)
        value - The value as a string.
        Returns:
        The value as an Object.
      • parseInt

        public static int parseInt​(java.lang.String s,
                                   int offset,
                                   int length,
                                   int base)
                            throws java.lang.NumberFormatException
        Deprecated.
        Parse an int from a substring. Negative numbers are not handled.
        Parameters:
        s - String
        offset - Offset within string
        length - Length of integer or -1 for remainder of string
        base - base of the integer
        Returns:
        the parsed integer
        Throws:
        java.lang.NumberFormatException - if the string cannot be parsed
      • parseInt

        public static int parseInt​(byte[] b,
                                   int offset,
                                   int length,
                                   int base)
                            throws java.lang.NumberFormatException
        Deprecated.
        Parse an int from a byte array of ascii characters. Negative numbers are not handled.
        Parameters:
        b - byte array
        offset - Offset within string
        length - Length of integer or -1 for remainder of string
        base - base of the integer
        Returns:
        the parsed integer
        Throws:
        java.lang.NumberFormatException - if the array cannot be parsed into an integer
      • parseBytes

        public static byte[] parseBytes​(java.lang.String s,
                                        int base)
        Deprecated.
      • toString

        public static java.lang.String toString​(byte[] bytes,
                                                int base)
        Deprecated.
      • convertHexDigit

        public static byte convertHexDigit​(byte c)
        Deprecated.
        Parameters:
        c - An ASCII encoded character 0-9 a-f A-F
        Returns:
        The byte value of the character 0-16.
      • convertHexDigit

        public static int convertHexDigit​(char c)
        Deprecated.
        Parameters:
        c - An ASCII encoded character 0-9 a-f A-F
        Returns:
        The byte value of the character 0-16.
      • convertHexDigit

        public static int convertHexDigit​(int c)
        Deprecated.
        Parameters:
        c - An ASCII encoded character 0-9 a-f A-F
        Returns:
        The byte value of the character 0-16.
      • toHex

        public static void toHex​(byte b,
                                 java.lang.Appendable buf)
        Deprecated.
      • toHex

        public static void toHex​(int value,
                                 java.lang.Appendable buf)
                          throws java.io.IOException
        Deprecated.
        Throws:
        java.io.IOException
      • toHex

        public static void toHex​(long value,
                                 java.lang.Appendable buf)
                          throws java.io.IOException
        Deprecated.
        Throws:
        java.io.IOException
      • toHexString

        public static java.lang.String toHexString​(byte b)
        Deprecated.
      • toHexString

        public static java.lang.String toHexString​(byte[] b)
        Deprecated.
      • toHexString

        public static java.lang.String toHexString​(byte[] b,
                                                   int offset,
                                                   int length)
        Deprecated.
      • fromHexString

        public static byte[] fromHexString​(java.lang.String s)
        Deprecated.
      • dump

        public static void dump​(java.lang.Class<?> c)
        Deprecated.
      • dump

        public static void dump​(java.lang.ClassLoader cl)
        Deprecated.
      • call

        @Deprecated
        public static java.lang.Object call​(java.lang.Class<?> oClass,
                                            java.lang.String methodName,
                                            java.lang.Object obj,
                                            java.lang.Object[] arg)
                                     throws java.lang.reflect.InvocationTargetException,
                                            java.lang.NoSuchMethodException
        Deprecated.
        Throws:
        java.lang.reflect.InvocationTargetException
        java.lang.NoSuchMethodException
      • construct

        @Deprecated
        public static java.lang.Object construct​(java.lang.Class<?> klass,
                                                 java.lang.Object[] arguments)
                                          throws java.lang.reflect.InvocationTargetException,
                                                 java.lang.NoSuchMethodException
        Deprecated.
        Throws:
        java.lang.reflect.InvocationTargetException
        java.lang.NoSuchMethodException
      • construct

        @Deprecated
        public static java.lang.Object construct​(java.lang.Class<?> klass,
                                                 java.lang.Object[] arguments,
                                                 java.util.Map<java.lang.String,​java.lang.Object> namedArgMap)
                                          throws java.lang.reflect.InvocationTargetException,
                                                 java.lang.NoSuchMethodException
        Deprecated.
        Throws:
        java.lang.reflect.InvocationTargetException
        java.lang.NoSuchMethodException
      • isTrue

        public static boolean isTrue​(java.lang.Object o)
        Deprecated.
        Parameters:
        o - Object to test for true
        Returns:
        True if passed object is not null and is either a Boolean with value true or evaluates to a string that evaluates to true.
      • isFalse

        public static boolean isFalse​(java.lang.Object o)
        Deprecated.
        Parameters:
        o - Object to test for false
        Returns:
        True if passed object is not null and is either a Boolean with value false or evaluates to a string that evaluates to false.
      • getLocationOfClass

        public static java.net.URI getLocationOfClass​(java.lang.Class<?> clazz)
        Deprecated.
        Attempt to find the Location of a loaded Class.

        This can be null for primitives, void, and in-memory classes.

        Parameters:
        clazz - the loaded class to find a location for.
        Returns:
        the location as a URI (this is a URI pointing to a holder of the class: a directory, a jar file, a jrt:// resource, etc), or null of no location available.
      • getClassLoaderLocation

        public static java.net.URI getClassLoaderLocation​(java.lang.Class<?> clazz)
        Deprecated.
      • getSystemClassLoaderLocation

        public static java.net.URI getSystemClassLoaderLocation​(java.lang.Class<?> clazz)
        Deprecated.
      • getClassLoaderLocation

        public static java.net.URI getClassLoaderLocation​(java.lang.Class<?> clazz,
                                                          java.lang.ClassLoader loader)
        Deprecated.
      • getCodeSourceLocation

        public static java.net.URI getCodeSourceLocation​(java.lang.Class<?> clazz)
        Deprecated.
      • getModuleLocation

        public static java.net.URI getModuleLocation​(java.lang.Class<?> clazz)
        Deprecated.