Uses of Class
java.lang.Class
-
Uses of Class in com.squareup.okhttp.internal.http
Methods in com.squareup.okhttp.internal.http with parameters of type Class Modifier and Type Method Description ObjectHttpsURLConnectionImpl. getContent(Class[] types) -
Uses of Class in dalvik.system
Methods in dalvik.system that return Class Modifier and Type Method Description static Class<?>[]VMStack. getClasses(int maxDepth)Creates an array of classes from the methods at the top of the stack.static Class<?>VMStack. getStackClass2()Returns the class of the caller's caller's caller.Methods in dalvik.system with parameters of type Class Modifier and Type Method Description ObjectVMRuntime. newNonMovableArray(Class<?> componentType, int length)Returns an array allocated in an area of the Java heap where it will never be moved. -
Uses of Class in java.io
Methods in java.io that return Class Modifier and Type Method Description Class<?>ObjectStreamClass. forClass()Returns the class (java.lang.Class) for this descriptor.Class<?>ObjectStreamField. getType()Gets the type of this field.protected Class<?>ObjectInputStream. resolveClass(ObjectStreamClass osClass)Loads the Java class corresponding to the class descriptorosClassthat has just been read from the source stream.protected Class<?>ObjectInputStream. resolveProxyClass(String[] interfaceNames)Creates the proxy class that implements the interfaces specified ininterfaceNames.Methods in java.io with parameters of type Class Modifier and Type Method Description protected voidObjectOutputStream. annotateClass(Class<?> aClass)Writes optional information for classaClassto the output stream.protected voidObjectOutputStream. annotateProxyClass(Class<?> aClass)Writes optional information for a proxy class to the target stream.static ObjectStreamClassObjectStreamClass. lookup(Class<?> cl)Returns the descriptor for a serializable class.static ObjectStreamClassObjectStreamClass. lookupAny(Class<?> cl)Returns the descriptor for any class, whether or not the class implements Serializable or Externalizable.Constructors in java.io with parameters of type Class Constructor Description ObjectStreamField(String name, Class<?> cl)Constructs an ObjectStreamField with the specified name and type.ObjectStreamField(String name, Class<?> cl, boolean unshared)Constructs an ObjectStreamField with the specified name, type and the indication if it is unshared. -
Uses of Class in java.lang
Fields in java.lang declared as Class Modifier and Type Field Description static Class<Boolean>Boolean. TYPETheClassobject that represents the primitive typeboolean.static Class<Byte>Byte. TYPETheClassobject that represents the primitive typebyte.static Class<Character>Character. TYPETheClassobject that represents the primitive typechar.static Class<Double>Double. TYPETheClassobject that represents the primitive typedouble.static Class<Float>Float. TYPETheClassobject that represents the primitive typefloat.static Class<Integer>Integer. TYPETheClassobject that represents the primitive typeint.static Class<Long>Long. TYPETheClassobject that represents the primitive typelong.static Class<Short>Short. TYPETheClassobject that represents the primitive typeshort.static Class<Void>Void. TYPETheClassobject that represents the primitive typevoid.Methods in java.lang that return Class Modifier and Type Method Description <U> Class<? extends U>Class. asSubclass(Class<U> c)Casts thisClassto represent a subclass of the given class.protected Class<?>SecurityManager. currentLoadedClass()Deprecated.protected Class<?>ClassLoader. defineClass(byte[] classRep, int offset, int length)Deprecated.UseClassLoader.defineClass(String, byte[], int, int)instead.protected Class<?>ClassLoader. defineClass(String className, byte[] classRep, int offset, int length)Constructs a new class from an array of bytes containing a class definition in class file format.protected Class<?>ClassLoader. defineClass(String className, byte[] classRep, int offset, int length, ProtectionDomain protectionDomain)Constructs a new class from an array of bytes containing a class definition in class file format and assigns the specified protection domain to the new class.protected Class<?>ClassLoader. defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain)Defines a new class with the specified name, byte code from the byte buffer and the optional protection domain.Class<? extends Enum>EnumConstantNotPresentException. enumType()Gets the enum type for which the constant name is missing.protected Class<?>ClassLoader. findClass(String className)Overridden by subclasses, throws aClassNotFoundExceptionby default.protected Class<?>ClassLoader. findLoadedClass(String className)Returns the class with the specified name if it has already been loaded by the VM ornullif it has not yet been loaded.protected Class<?>ClassLoader. findSystemClass(String className)Finds the class with the specified name, loading it using the system class loader if necessary.static Class<?>Class. forName(String className)Returns aClassobject which represents the class with the given name.static Class<?>Class. forName(String className, boolean shouldInitialize, ClassLoader classLoader)Returns aClassobject which represents the class with the given name.Class<?>Object. getClass()Returns the unique instance ofClassthat represents this object's class.protected Class[]SecurityManager. getClassContext()Class<?>[]Class. getClasses()Returns an array containingClassobjects for all public classes and interfaces that are members of this class.Class<?>Class. getComponentType()Returns aClassobject which represents the component type if this class represents an array type.Class<?>[]Class. getDeclaredClasses()Returns an array containingClassobjects for all classes and interfaces that are declared as members of the class which thisClassrepresents.Class<?>Class. getDeclaringClass()Returns the declaringClassof thisClass.Class<E>Enum. getDeclaringClass()Returns the enum constant's declaring class.Class<?>Class. getEnclosingClass()Returns the enclosingClassof thisClass.Class<?>[]Class. getInterfaces()Returns an array ofClassobjects that match the interfaces in theimplementsdeclaration of the class represented by thisClass.Class<? super T>Class. getSuperclass()Returns theClassobject which represents the superclass of the class represented by thisClass.Class<?>ClassLoader. loadClass(String className)Loads the class with the specified name.protected Class<?>ClassLoader. loadClass(String className, boolean resolve)Loads the class with the specified name, optionally linking it after loading.Methods in java.lang that return types with arguments of type Class Modifier and Type Method Description TypeVariable<Class<T>>[]Class. getTypeParameters()Returns an array containingTypeVariableobjects for type variables declared by the generic class represented by thisClass.Methods in java.lang with parameters of type Class Modifier and Type Method Description <U> Class<? extends U>Class. asSubclass(Class<U> c)Casts thisClassto represent a subclass of the given class.voidSecurityManager. checkMemberAccess(Class<?> cls, int type)static booleanCompiler. compileClass(Class<?> classToCompile)Compiles the specified class using the JIT compiler and indicates if compilation has been successful.<A extends Annotation>
AClass. getAnnotation(Class<A> annotationType)<A extends Annotation>
APackage. getAnnotation(Class<A> annotationType)Returns the annotation associated with the specified annotation type and this package, if present.Constructor<T>Class. getConstructor(Class<?>... parameterTypes)Returns aConstructorobject which represents the public constructor matching the given parameter types.Constructor<T>Class. getDeclaredConstructor(Class<?>... parameterTypes)Returns aConstructorobject which represents the constructor matching the given parameter types that is declared by the class represented by thisClass.MethodClass. getDeclaredMethod(String name, Class<?>... parameterTypes)Returns aMethodobject which represents the method matching the given name and parameter types that is declared by the class represented by thisClass.MethodClass. getMethod(String name, Class<?>... parameterTypes)Returns aMethodobject which represents the public method with the given name and parameter types.static <T extends Enum<T>>
T[]Enum. getSharedConstants(Class<T> enumType)Returns a shared, mutable array containing the constants of this enum.booleanClass. isAnnotationPresent(Class<? extends Annotation> annotationType)booleanPackage. isAnnotationPresent(Class<? extends Annotation> annotationType)Indicates whether the specified annotation is present.booleanClass. isAssignableFrom(Class<?> c)Tests whether the given class type can be converted to the class represented by thisClass.protected voidClassLoader. resolveClass(Class<?> clazz)Forces a class to be linked (initialized).protected voidClassLoader. setSigners(Class<?> c, Object[] signers)Sets the signers of the specified class.static <T extends Enum<T>>
TEnum. valueOf(Class<T> enumType, String name)Returns the constant with the specified name of the specified enum type.Constructors in java.lang with parameters of type Class Constructor Description EnumConstantNotPresentException(Class<? extends Enum> enumType, String constantName)Constructs a newEnumConstantNotPresentExceptionwith the current stack trace and a detail message based on the specified enum type and missing constant name. -
Uses of Class in java.lang.annotation
Methods in java.lang.annotation that return Class Modifier and Type Method Description Class<? extends Annotation>Annotation. annotationType()Returns the type of this annotation.Class<? extends Annotation>IncompleteAnnotationException. annotationType()Returns the annotation type.Constructors in java.lang.annotation with parameters of type Class Constructor Description IncompleteAnnotationException(Class<? extends Annotation> annotationType, String elementName)Constructs an instance with the incomplete annotation type and the name of the element that's missing. -
Uses of Class in java.lang.reflect
Methods in java.lang.reflect that return Class Modifier and Type Method Description Class<T>Constructor. getDeclaringClass()Returns the class that declares this constructor.Class<?>Field. getDeclaringClass()Returns the class that declares this field.Class<?>Member. getDeclaringClass()Returns the class that declares this member.Class<?>Method. getDeclaringClass()Returns the class that declares this method.Class<?>[]Constructor. getExceptionTypes()Returns the exception types as an array ofClassinstances.Class<?>[]Method. getExceptionTypes()Returns the exception types as an array ofClassinstances.Class<?>[]Constructor. getParameterTypes()Returns an array of theClassobjects associated with the parameter types of this constructor.Class<?>[]Method. getParameterTypes()Returns an array ofClassobjects associated with the parameter types of this method.static Class<?>Proxy. getProxyClass(ClassLoader loader, Class<?>... interfaces)Returns the dynamically builtClassfor the specified interfaces.Class<?>Method. getReturnType()Returns theClassassociated with the return type of this method.Class<?>Field. getType()Return theClassassociated with the type of this field.Methods in java.lang.reflect with parameters of type Class Modifier and Type Method Description <T extends Annotation>
TAccessibleObject. getAnnotation(Class<T> annotationType)<T extends Annotation>
TAnnotatedElement. getAnnotation(Class<T> annotationType)Returns, for this element, the annotation with the specified type, ornullif no annotation with the specified type is present (including inherited annotations).static Class<?>Proxy. getProxyClass(ClassLoader loader, Class<?>... interfaces)Returns the dynamically builtClassfor the specified interfaces.booleanAccessibleObject. isAnnotationPresent(Class<? extends Annotation> annotationType)booleanAnnotatedElement. isAnnotationPresent(Class<? extends Annotation> annotationType)Indicates whether or not this element has an annotation with the specified annotation type (including inherited annotations).static booleanProxy. isProxyClass(Class<?> cl)Indicates whether or not the specified class is a dynamically generated proxy class.static ObjectArray. newInstance(Class<?> componentType, int size)Returns a new array of the specified component type and length.static ObjectArray. newInstance(Class<?> componentType, int... dimensions)Returns a new multidimensional array of the specified component type and dimensions.static ObjectProxy. newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)Returns an instance of the dynamically built class for the specified interfaces. -
Uses of Class in java.net
Methods in java.net that return Class Modifier and Type Method Description protected Class<?>URLClassLoader. findClass(String className)Tries to locate and load the specified class using the known URLs.Methods in java.net with parameters of type Class Modifier and Type Method Description ObjectContentHandler. getContent(URLConnection uConn, Class[] types)Returns the object pointed by the specified URL connectionuConn.ObjectURL. getContent(Class[] types)Equivalent toopenConnection().getContent(types).ObjectURLConnection. getContent(Class[] types)Returns an object representing the content of the resource thisURLConnectionis connected to. -
Uses of Class in java.security
Methods in java.security that return Class Modifier and Type Method Description protected Class<?>SecureClassLoader. defineClass(String name, byte[] b, int off, int len, CodeSource cs)Constructs a new class from an array of bytes containing a class definition in class file format with an optionalCodeSource.protected Class<?>SecureClassLoader. defineClass(String name, ByteBuffer b, CodeSource cs)Constructs a new class from an array of bytes containing a class definition in class file format with an optionalCodeSource.Methods in java.security with parameters of type Class Modifier and Type Method Description booleanKeyStoreSpi. engineEntryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Indicates whether the entry for the given alias is assignable to the providedClass.protected abstract <T extends KeySpec>
TKeyFactorySpi. engineGetKeySpec(Key key, Class<T> keySpec)Returns the key specification for the specified key.protected abstract <T extends AlgorithmParameterSpec>
TAlgorithmParametersSpi. engineGetParameterSpec(Class<T> paramSpec)Returns theAlgorithmParameterSpecfor thisAlgorithmParametersSpi.booleanKeyStore. entryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Indicates whether the entry for the given alias is assignable to the providedClass.<T extends KeySpec>
TKeyFactory. getKeySpec(Key key, Class<T> keySpec)Returns the key specification for the specified key.<T extends AlgorithmParameterSpec>
TAlgorithmParameters. getParameterSpec(Class<T> paramSpec)Returns theAlgorithmParameterSpecfor thisAlgorithmParameters. -
Uses of Class in java.sql
Methods in java.sql that return types with arguments of type Class Modifier and Type Method Description Map<String,Class<?>>Connection. getTypeMap()Returns the type mapping associated with thisConnectionobject.Methods in java.sql with parameters of type Class Modifier and Type Method Description <T extends Source>
TSQLXML. getSource(Class<T> sourceClass)Returns aSourcefor reading this object's data.booleanWrapper. isWrapperFor(Class<?> iface)If the caller is a wrapper of the class or implements the given interface, the methods return false and vice versa.<T extends Result>
TSQLXML. setResult(Class<T> resultClass)Returns aResultfor writing this object's data.<T> TWrapper. unwrap(Class<T> iface)Returns an object that implements the given interface.Method parameters in java.sql with type arguments of type Class Modifier and Type Method Description ObjectArray. getArray(long index, int count, Map<String,Class<?>> map)Returns part of the SQLARRAYassociated with this array, starting at a particularindexand comprising up tocountsuccessive elements of the SQL array.ObjectArray. getArray(Map<String,Class<?>> map)Returns the data from the underlying SQLARRAYas a Java array.Object[]Struct. getAttributes(Map<String,Class<?>> theMap)Gets the values of the attributes of this SQL structured type.ObjectCallableStatement. getObject(int parameterIndex, Map<String,Class<?>> map)Gets the value of the specified parameter as anObject.ObjectCallableStatement. getObject(String parameterName, Map<String,Class<?>> map)Gets the value of a specified parameter as anObject.ObjectRef. getObject(Map<String,Class<?>> map)Returns the associated object and uses the relevant mapping to convert it to a Java type.ObjectResultSet. getObject(int columnIndex, Map<String,Class<?>> map)Gets the value of a column specified by column index as a JavaObject.ObjectResultSet. getObject(String columnName, Map<String,Class<?>> map)Gets the value of a column specified by column name as a JavaObject.ResultSetArray. getResultSet(long index, int count, Map<String,Class<?>> map)Returns aResultSetobject that holds the entries of a subarray, beginning at a particular index and comprising up tocountsuccessive entries.ResultSetArray. getResultSet(Map<String,Class<?>> map)Returns aResultSetobject which holds the entries of the SQLARRAYassociated with this array.voidConnection. setTypeMap(Map<String,Class<?>> map)Sets theTypeMapfor this connection. -
Uses of Class in java.util
Methods in java.util that return Class Modifier and Type Method Description Class<?>IllegalFormatConversionException. getArgumentClass()Returns the class of the mismatched parameter.Methods in java.util with parameters of type Class Modifier and Type Method Description static <E extends Enum<E>>
EnumSet<E>EnumSet. allOf(Class<E> elementType)Creates an enum set filled with all the enum elements of the specifiedelementType.static <E> Collection<E>Collections. checkedCollection(Collection<E> c, Class<E> type)Returns a dynamically typesafe view of the specified collection.static <E> List<E>Collections. checkedList(List<E> list, Class<E> type)Returns a dynamically typesafe view of the specified list.static <K, V> Map<K,V>Collections. checkedMap(Map<K,V> m, Class<K> keyType, Class<V> valueType)Returns a dynamically typesafe view of the specified map.static <E> Set<E>Collections. checkedSet(Set<E> s, Class<E> type)Returns a dynamically typesafe view of the specified set.static <K, V> SortedMap<K,V>Collections. checkedSortedMap(SortedMap<K,V> m, Class<K> keyType, Class<V> valueType)Returns a dynamically typesafe view of the specified sorted map.static <E> SortedSet<E>Collections. checkedSortedSet(SortedSet<E> s, Class<E> type)Returns a dynamically typesafe view of the specified sorted set.static <T, U> T[]Arrays. copyOf(U[] original, int newLength, Class<? extends T[]> newType)CopiesnewLengthelements fromoriginalinto a new array.static <T, U> T[]Arrays. copyOfRange(U[] original, int start, int end, Class<? extends T[]> newType)Copies elements fromoriginalinto a new array, from indexes start (inclusive) to end (exclusive).static <S> ServiceLoader<S>ServiceLoader. load(Class<S> service)Constructs a service loader, using the current thread's context class loader.static <S> ServiceLoader<S>ServiceLoader. load(Class<S> service, ClassLoader classLoader)Constructs a service loader.static <S> SServiceLoader. loadFromSystemProperty(Class<S> service)Internal API to support built-in SPIs that check a system property first.static <S> ServiceLoader<S>ServiceLoader. loadInstalled(Class<S> service)Constructs a service loader, using the extension class loader.static <E extends Enum<E>>
EnumSet<E>EnumSet. noneOf(Class<E> elementType)Creates an empty enum set.Constructors in java.util with parameters of type Class Constructor Description EnumMap(Class<K> keyType)Constructs an emptyEnumMapusing the given key type.IllegalFormatConversionException(char c, Class<?> arg)Constructs a newIllegalFormatConversionExceptionwith the class of the mismatched conversion and corresponding parameter.UnsafeArrayList(Class<T> elementType, int initialCapacity) -
Uses of Class in java.util.concurrent.atomic
Methods in java.util.concurrent.atomic with parameters of type Class Modifier and Type Method Description static <U> AtomicIntegerFieldUpdater<U>AtomicIntegerFieldUpdater. newUpdater(Class<U> tclass, String fieldName)Creates and returns an updater for objects with the given field.static <U> AtomicLongFieldUpdater<U>AtomicLongFieldUpdater. newUpdater(Class<U> tclass, String fieldName)Creates and returns an updater for objects with the given field.static <U, W> AtomicReferenceFieldUpdater<U,W>AtomicReferenceFieldUpdater. newUpdater(Class<U> tclass, Class<W> vclass, String fieldName)Creates and returns an updater for objects with the given field. -
Uses of Class in java.util.prefs
Methods in java.util.prefs with parameters of type Class Modifier and Type Method Description static PreferencesPreferences. systemNodeForPackage(Class<?> c)Returns the system preference node for the package of the given class.static PreferencesPreferences. userNodeForPackage(Class<?> c)Returns the user preference node for the package of the given class. -
Uses of Class in javax.crypto
Methods in javax.crypto with parameters of type Class Modifier and Type Method Description protected abstract KeySpecSecretKeyFactorySpi. engineGetKeySpec(SecretKey key, Class keySpec)Returns the key specification of the specified secret key.KeySpecSecretKeyFactory. getKeySpec(SecretKey key, Class keySpec)Returns the key specification of the specified secret key. -
Uses of Class in javax.security.auth
Methods in javax.security.auth with parameters of type Class Modifier and Type Method Description <T extends Principal>
Set<T>Subject. getPrincipals(Class<T> c)<T> Set<T>Subject. getPrivateCredentials(Class<T> c)Returns thisSubject's private credentials which are a subclass of theClassprovided.<T> Set<T>Subject. getPublicCredentials(Class<T> c)Returns thisSubject's public credentials which are a subclass of theClassprovided. -
Uses of Class in javax.sql
-
Uses of Class in libcore.reflect
Fields in libcore.reflect declared as Class Modifier and Type Field Description protected Class<?>AnnotationMember. elementTypeMethods in libcore.reflect that return Class Modifier and Type Method Description static Class<?>InternalNames. getClass(ClassLoader classLoader, String internalName)ClassParameterizedTypeImpl. getRawType()Methods in libcore.reflect with parameters of type Class Modifier and Type Method Description static voidTypes. appendTypeName(StringBuilder out, Class<?> c)static <A extends Annotation>
AAnnotationFactory. createAnnotation(Class<? extends Annotation> annotationType, AnnotationMember[] elements)Provides a new annotation instance.static AnnotationMember[]AnnotationFactory. getElementsDescription(Class<? extends Annotation> annotationType)Reflects specified annotation type and returns an array of member element definitions with default values.static StringInternalNames. getInternalName(Class<?> c)static StringTypes. getSignature(Class<?> clazz)Returns the internal name ofclazz(also known as the descriptor).voidGenericSignatureParser. parseForConstructor(GenericDeclaration genericDecl, String signature, Class<?>[] rawExceptionTypes)Parses the generic signature of a constructor and creates the data structure representing the signature.voidGenericSignatureParser. parseForMethod(GenericDeclaration genericDecl, String signature, Class<?>[] rawExceptionTypes)Parses the generic signature of a method and creates the data structure representing the signature.static StringTypes. toString(Class<?>[] types)Returns the names oftypesseparated by commas.Constructors in libcore.reflect with parameters of type Class Constructor Description AnnotationMember(String name, Object val, Class type, Method m)Creates the completely defined element. -
Uses of Class in libcore.util
Fields in libcore.util declared as Class Modifier and Type Field Description static Class<?>[]EmptyArray. CLASS -
Uses of Class in org.apache.commons.logging
Methods in org.apache.commons.logging with parameters of type Class Modifier and Type Method Description protected static ClassLoaderLogFactory. getClassLoader(Class clazz)Safely get access to the classloader for the specified class.abstract LogLogFactory. getInstance(Class clazz)Convenience method to derive a name from the specified class and callgetInstance(String)with it.static LogLogSource. getInstance(Class clazz)Deprecated.Get aLoginstance by classstatic LogLogFactory. getLog(Class clazz)Convenience method to return a named logger, without the application having to care about factories.static voidLogSource. setLogImplementation(Class logclass)Deprecated.Set the log implementation/log implementation factory by class. -
Uses of Class in org.apache.commons.logging.impl
Fields in org.apache.commons.logging.impl declared as Class Modifier and Type Field Description protected Class[]LogFactoryImpl. logConstructorSignatureThe signature of the Constructor to be used.protected Class[]LogFactoryImpl. logMethodSignatureThe signature of thesetLogFactorymethod to be used.Methods in org.apache.commons.logging.impl with parameters of type Class Modifier and Type Method Description protected static ClassLoaderLogFactoryImpl. getClassLoader(Class clazz)Workaround for bug in Java1.2; in theory this method is not needed.LogLogFactoryImpl. getInstance(Class clazz)Convenience method to derive a name from the specified class and callgetInstance(String)with it. -
Uses of Class in org.apache.harmony.security.provider.crypto
Methods in org.apache.harmony.security.provider.crypto with parameters of type Class Modifier and Type Method Description protected <T extends KeySpec>
TDSAKeyFactoryImpl. engineGetKeySpec(Key key, Class<T> keySpec)This method returns a specification for the supplied key. -
Uses of Class in org.apache.http.impl.client
Methods in org.apache.http.impl.client with parameters of type Class Modifier and Type Method Description voidAbstractHttpClient. removeRequestInterceptorByClass(Class<? extends HttpRequestInterceptor> clazz)voidAbstractHttpClient. removeResponseInterceptorByClass(Class<? extends HttpResponseInterceptor> clazz) -
Uses of Class in org.apache.http.protocol
Methods in org.apache.http.protocol with parameters of type Class Modifier and Type Method Description voidBasicHttpProcessor. removeRequestInterceptorByClass(Class clazz)voidHttpRequestInterceptorList. removeRequestInterceptorByClass(Class clazz)Removes all request interceptor of the specified classvoidBasicHttpProcessor. removeResponseInterceptorByClass(Class clazz)voidHttpResponseInterceptorList. removeResponseInterceptorByClass(Class clazz)Removes all response interceptor of the specified class -
Uses of Class in org.apache.xml.utils
Constructors in org.apache.xml.utils with parameters of type Class Constructor Description ObjectPool(Class type)Constructor ObjectPoolObjectPool(Class type, int size)Constructor ObjectPool -
Uses of Class in org.apache.xpath.compiler
Methods in org.apache.xpath.compiler with parameters of type Class Modifier and Type Method Description intFunctionTable. installFunction(String name, Class func)Install a built-in function. -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh with parameters of type Class Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)protected AlgorithmParameterSpecAlgorithmParametersSpi. engineGetParameterSpec(Class paramSpec)protected AlgorithmParameterSpecAlgorithmParametersSpi. localEngineGetParameterSpec(Class paramSpec) -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.dsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa with parameters of type Class Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)protected AlgorithmParameterSpecAlgorithmParametersSpi. engineGetParameterSpec(Class paramSpec)protected AlgorithmParameterSpecAlgorithmParametersSpi. localEngineGetParameterSpec(Class paramSpec) -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec with parameters of type Class Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec) -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.rsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa with parameters of type Class Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)protected AlgorithmParameterSpecAlgorithmParametersSpi. engineGetParameterSpec(Class paramSpec)protected abstract AlgorithmParameterSpecAlgorithmParametersSpi. localEngineGetParameterSpec(Class paramSpec)protected AlgorithmParameterSpecAlgorithmParametersSpi.OAEP. localEngineGetParameterSpec(Class paramSpec)protected AlgorithmParameterSpecAlgorithmParametersSpi.PSS. localEngineGetParameterSpec(Class paramSpec) -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.util
Methods in org.bouncycastle.jcajce.provider.asymmetric.util with parameters of type Class Modifier and Type Method Description protected KeySpecBaseKeyFactorySpi. engineGetKeySpec(Key key, Class spec) -
Uses of Class in org.bouncycastle.jcajce.provider.asymmetric.x509
Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 with parameters of type Class Modifier and Type Method Description protected KeySpecKeyFactory. engineGetKeySpec(Key key, Class keySpec) -
Uses of Class in org.bouncycastle.jcajce.provider.symmetric
Methods in org.bouncycastle.jcajce.provider.symmetric with parameters of type Class Modifier and Type Method Description protected KeySpecDES.KeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)protected KeySpecDESede.KeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)protected AlgorithmParameterSpecPBEPKCS12.AlgParams. localEngineGetParameterSpec(Class paramSpec) -
Uses of Class in org.bouncycastle.jcajce.provider.symmetric.util
Methods in org.bouncycastle.jcajce.provider.symmetric.util with parameters of type Class Modifier and Type Method Description protected KeySpecBaseSecretKeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)protected AlgorithmParameterSpecBaseAlgorithmParameters. engineGetParameterSpec(Class paramSpec)protected abstract AlgorithmParameterSpecBaseAlgorithmParameters. localEngineGetParameterSpec(Class paramSpec)protected AlgorithmParameterSpecIvAlgorithmParameters. localEngineGetParameterSpec(Class paramSpec) -
Uses of Class in org.conscrypt
Methods in org.conscrypt with parameters of type Class Modifier and Type Method Description protected <T extends KeySpec>
TOpenSSLDSAKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec)protected <T extends KeySpec>
TOpenSSLECKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec)protected <T extends KeySpec>
TOpenSSLRSAKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec) -
Uses of Class in org.conscrypt.util
Fields in org.conscrypt.util declared as Class Modifier and Type Field Description static Class<?>[]EmptyArray. CLASS -
Uses of Class in org.robovm.rt
Methods in org.robovm.rt that return Class Modifier and Type Method Description static Class<?>[]VM. getStackClasses(int skipNum, int maxDepth)Returns the defining classes of the methods in the call stack.static Class<?>[]VM. listClasses(Class<?> assignableToClass, ClassLoader classLoader)Methods in org.robovm.rt with parameters of type Class Modifier and Type Method Description static <T> TVM. allocateObject(Class<T> cls)static Class<?>[]VM. listClasses(Class<?> assignableToClass, ClassLoader classLoader)booleanReflectionAccess. matchParameterTypes(Constructor<?> c, Class<?>[] parameterTypes)booleanReflectionAccess. matchParameterTypes(Method m, Class<?>[] parameterTypes) -
Uses of Class in org.robovm.rt.annotation
Methods in org.robovm.rt.annotation that return Class Modifier and Type Method Description Class<? extends Annotation>Annotation. annotationType()Constructors in org.robovm.rt.annotation with parameters of type Class Constructor Description Annotation(Class<? extends Annotation> klass) -
Uses of Class in org.robovm.rt.bro
Methods in org.robovm.rt.bro with parameters of type Class Modifier and Type Method Description protected static <T extends Bits<T>>
T[]Bits. _values(Class<T> cls)static <T extends Struct<T>>
TStruct. allocate(Class<T> cls)static <T extends Struct<T>>
TStruct. allocate(Class<T> cls, int n)static <T extends Struct<T>>
T[]Struct.Marshaler. array1DToObject(Class<T[]> arrayClass, long handle, long flags, int d1)static <T extends Struct<T>>
T[][]Struct.Marshaler. array2DToObject(Class<T[][]> arrayClass, long handle, long flags, int d1, int d2)static <T extends Struct<T>>
T[][][]Struct.Marshaler. array3DToObject(Class<T[][][]> arrayClass, long handle, long flags, int d1, int d2, int d3)<U extends NativeObject>
UNativeObject. as(Class<U> type)Casts thisNativeObjectto anotherNativeObjecttype.<U extends NativeObject>
UStruct. as(Class<U> type)static voidBro. bind(Class<?> c)static MethodMarshalerLookup. findMarshaler(Class<? extends NativeObject> type)Finds aT toObject(Class<?>, long, long)marshaler method which can convert handles into the specified type.static <T extends Struct<T>>
TStruct. malloc(Class<T> cls)static <T extends Struct<T>>
TStruct. malloc(Class<T> cls, int n)static ByteBufferBufferMarshalers.BufferMarshaler. toByteBuffer(Class<?> cls, long handle, long flags, int d1)static ByteBufferBufferMarshalers.BufferMarshaler. toByteBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static ByteBufferBufferMarshalers.BufferMarshaler. toByteBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static CharBufferBufferMarshalers.BufferMarshaler. toCharBuffer(Class<?> cls, long handle, long flags, int d1)static CharBufferBufferMarshalers.BufferMarshaler. toCharBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static CharBufferBufferMarshalers.BufferMarshaler. toCharBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static DoubleBufferBufferMarshalers.BufferMarshaler. toDoubleBuffer(Class<?> cls, long handle, long flags, int d1)static DoubleBufferBufferMarshalers.BufferMarshaler. toDoubleBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static DoubleBufferBufferMarshalers.BufferMarshaler. toDoubleBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static FloatBufferBufferMarshalers.BufferMarshaler. toFloatBuffer(Class<?> cls, long handle, long flags, int d1)static FloatBufferBufferMarshalers.BufferMarshaler. toFloatBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static FloatBufferBufferMarshalers.BufferMarshaler. toFloatBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static IntBufferBufferMarshalers.BufferMarshaler. toIntBuffer(Class<?> cls, long handle, long flags, int d1)static IntBufferBufferMarshalers.BufferMarshaler. toIntBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static IntBufferBufferMarshalers.BufferMarshaler. toIntBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static LongBufferBufferMarshalers.BufferMarshaler. toLongBuffer(Class<?> cls, long handle, long flags, int d1)static LongBufferBufferMarshalers.BufferMarshaler. toLongBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static LongBufferBufferMarshalers.BufferMarshaler. toLongBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static byte[]ArrayMarshalers.ByteArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static byte[][]ArrayMarshalers.ByteArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static byte[][][]ArrayMarshalers.ByteArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static char[]ArrayMarshalers.CharArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static char[][]ArrayMarshalers.CharArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static char[][][]ArrayMarshalers.CharArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static double[]ArrayMarshalers.DoubleArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static double[][]ArrayMarshalers.DoubleArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static double[][][]ArrayMarshalers.DoubleArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static float[]ArrayMarshalers.FloatArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static float[][]ArrayMarshalers.FloatArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static float[][][]ArrayMarshalers.FloatArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static int[]ArrayMarshalers.IntArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static int[][]ArrayMarshalers.IntArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static int[][][]ArrayMarshalers.IntArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static long[]ArrayMarshalers.LongArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static long[][]ArrayMarshalers.LongArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static long[][][]ArrayMarshalers.LongArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static short[]ArrayMarshalers.ShortArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1)static short[][]ArrayMarshalers.ShortArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2)static short[][][]ArrayMarshalers.ShortArrayMarshaler. toObject(Class<?> arrayClass, long handle, long flags, int d1, int d2, int d3)static Bits<?>Bits.AsByteMarshaler. toObject(Class<?> cls, byte value, long flags)static Bits<?>Bits.AsIntMarshaler. toObject(Class<?> cls, int value, long flags)static Bits<?>Bits.AsLongMarshaler. toObject(Class<?> cls, long value, long flags)static Bits<?>Bits.AsMachineSizedIntMarshaler. toObject(Class<?> cls, long value, long flags)static Bits<?>Bits.AsShortMarshaler. toObject(Class<?> cls, short value, long flags)static <T extends Enum<T>>
TEnumMarshalers.AsIntMarshaler. toObject(Class<T> cls, int ordinal, long flags)static <S extends NativeObject>
SMarshalerLookup. toObject(Class<S> type, long handle)Convenience method which finds a marshaler method and runs it converting the specified handle to the specified type.static NativeObjectNativeObject.Marshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsAsciiZMarshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsAsciiZMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)static StringStringMarshalers.AsDefaultCharsetZMarshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsDefaultCharsetZMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)static StringStringMarshalers.AsLatin1ZMarshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsLatin1ZMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)static StringStringMarshalers.AsUtf8ZMarshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsUtf8ZMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)static StringStringMarshalers.AsWindow1252ZMarshaler. toObject(Class<?> cls, long handle, long flags)static StringStringMarshalers.AsWindow1252ZMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)StringStringMarshalers.EightBitZeroTerminatedStringMarshaler. toObject(Class<?> cls, long handle, long flags)StringStringMarshalers.EightBitZeroTerminatedStringMarshaler. toObject(Class<?> cls, long handle, long flags, int d1)static <T extends Struct<T>>
TStruct.Marshaler. toObject(Class<T> cls, long handle, long flags)static <T extends Struct<T>>
TStruct.Marshaler. toObject(Class<T> cls, long handle, long flags, int d1)static <T extends Struct<T>>
TStruct.Marshaler. toObject(Class<T> cls, long handle, long flags, int d1, int d2)static <T extends Struct<T>>
TStruct.Marshaler. toObject(Class<T> cls, long handle, long flags, int d1, int d2, int d3)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsLongMarshaler. toObject(Class<T> cls, long value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsMachineSizedSIntMarshaler. toObject(Class<T> cls, long value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsMachineSizedUIntMarshaler. toObject(Class<T> cls, long value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsSignedByteMarshaler. toObject(Class<T> cls, byte value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsSignedIntMarshaler. toObject(Class<T> cls, int value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsSignedShortMarshaler. toObject(Class<T> cls, short value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsUnsignedByteMarshaler. toObject(Class<T> cls, byte value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsUnsignedIntMarshaler. toObject(Class<T> cls, int value, long flags)static <T extends Enum<T> & ValuedEnum>
ValuedEnumValuedEnum.AsUnsignedShortMarshaler. toObject(Class<T> cls, short value, long flags)static ShortBufferBufferMarshalers.BufferMarshaler. toShortBuffer(Class<?> cls, long handle, long flags, int d1)static ShortBufferBufferMarshalers.BufferMarshaler. toShortBuffer(Class<?> cls, long handle, long flags, int d1, int d2)static ShortBufferBufferMarshalers.BufferMarshaler. toShortBuffer(Class<?> cls, long handle, long flags, int d1, int d2, int d3)static <T extends Struct<T>>
TStruct. toStruct(Class<T> cls, long handle)Constructors in org.robovm.rt.bro with parameters of type Class Constructor Description LazyGlobalValue(Class<?> owner, String getterName)Creates a new constantLazyGlobalValue.LazyGlobalValue(Class<?> owner, String getterName, boolean constant)Creates a newLazyGlobalValue. -
Uses of Class in org.xmlpull.v1
Methods in org.xmlpull.v1 with parameters of type Class Modifier and Type Method Description static XmlPullParserFactoryXmlPullParserFactory. newInstance(String classNames, Class context) -
Uses of Class in SQLite.JDBC2z
Methods in SQLite.JDBC2z that return types with arguments of type Class Modifier and Type Method Description Map<String,Class<?>>JDBCConnection. getTypeMap()Methods in SQLite.JDBC2z with parameters of type Class Modifier and Type Method Description booleanJDBCConnection. isWrapperFor(Class iface)booleanJDBCDatabaseMetaData. isWrapperFor(Class iface)booleanJDBCResultSet. isWrapperFor(Class iface)booleanJDBCResultSetMetaData. isWrapperFor(Class iface)booleanJDBCStatement. isWrapperFor(Class iface)<T> TJDBCConnection. unwrap(Class<T> iface)<T> TJDBCDatabaseMetaData. unwrap(Class<T> iface)<T> TJDBCResultSet. unwrap(Class<T> iface)<T> TJDBCResultSetMetaData. unwrap(Class<T> iface)<T> TJDBCStatement. unwrap(Class<T> iface) -
Uses of Class in sun.misc
Methods in sun.misc with parameters of type Class Modifier and Type Method Description ObjectUnsafe. allocateInstance(Class<?> c)Allocates an instance of the given class without running the constructor.intUnsafe. arrayBaseOffset(Class clazz)Gets the offset from the start of an array object's memory to the memory used to store its initial (zeroeth) element.intUnsafe. arrayIndexScale(Class clazz)Gets the size of each element of the given array class.
SecurityManager.checkPermission(java.security.Permission)instead.