- generateCglibProxy(Object, ProxyConfig) - Static method in class cn.t.util.common.ReflectUtil
-
- generateId() - Method in class cn.t.util.common.random.AlternativeJdkIdGenerator
-
- generateJdkProxy(Object, ProxyConfig) - Static method in class cn.t.util.common.ReflectUtil
-
- Generic() - Constructor for class cn.t.util.common.GenericUtil.Generic
-
- GenericUtil - Class in cn.t.util.common
-
- GenericUtil() - Constructor for class cn.t.util.common.GenericUtil
-
- GenericUtil.Generic - Class in cn.t.util.common
-
泛型颗粒
- getAllInterfaces(Object) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given instance implements as an array,
including ones implemented by superclasses.
- getAllInterfacesAsSet(Object) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given instance implements as a Set,
including ones implemented by superclasses.
- getAllInterfacesForClass(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given class implements as an array,
including ones implemented by superclasses.
- getAllInterfacesForClass(Class<?>, ClassLoader) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given class implements as an array,
including ones implemented by superclasses.
- getAllInterfacesForClassAsSet(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given class implements as a Set,
including ones implemented by superclasses.
- getAllInterfacesForClassAsSet(Class<?>, ClassLoader) - Static method in class cn.t.util.common.ClassUtil
-
Return all interfaces that the given class implements as a Set,
including ones implemented by superclasses.
- getClassFileName(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Determine the name of the class file, relative to the containing
package: e.g.
- getConstructorIfAvailable(Class<T>, Class<?>...) - Static method in class cn.t.util.common.ClassUtil
-
Determine whether the given class has a public constructor with the given signature,
and return it if available (else return null).
- getDefaultClassLoader() - Static method in class cn.t.util.common.ClassUtil
-
Return the default ClassLoader to use: typically the thread context
ClassLoader, if available; the ClassLoader that loaded the ClassUtils
class will be used as fallback.
- getDescriptiveType(Object) - Static method in class cn.t.util.common.ClassUtil
-
Return a descriptive name for the given object's type: usually simply
the class name, but component type class name + "[]" for arrays,
and an appended list of implemented interfaces for JDK proxies.
- getEmbedClassGeneric() - Method in class cn.t.util.common.GenericUtil.Generic
-
- getGeneric(Class) - Static method in class cn.t.util.common.GenericUtil
-
获取类对象泛型结构
- getInterceptMethods() - Method in class cn.t.util.common.proxy.ProxyConfig
-
- getLatinCharacters() - Method in class cn.t.util.common.StringUtil.StringPart
-
- getLocalIp() - Static method in class cn.t.util.common.IpUtil
-
获取本地ip
- getMethod(Class<?>, String, Class<?>...) - Static method in class cn.t.util.common.ClassUtil
-
Determine whether the given class has a public method with the given signature,
and return it if available (else throws an IllegalStateException).
- getMethodCountForName(Class<?>, String) - Static method in class cn.t.util.common.ClassUtil
-
Return the number of methods with a given name (with any argument types),
for the given class and/or its superclasses.
- getMethodIfAvailable(Class<?>, String, Class<?>...) - Static method in class cn.t.util.common.ClassUtil
-
Determine whether the given class has a public method with the given signature,
and return it if available (else return null).
- getMostSpecificMethod(Method, Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Given a method, which may come from an interface, and a target class used
in the current reflective invocation, find the corresponding target method
if there is one.
- getOtherCharacters() - Method in class cn.t.util.common.StringUtil.StringPart
-
- getPackageName(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Determine the name of the package of the given class,
e.g.
- getPackageName(String) - Static method in class cn.t.util.common.ClassUtil
-
Determine the name of the package of the given fully-qualified class name,
e.g.
- getProxyCallback() - Method in class cn.t.util.common.proxy.ProxyConfig
-
- getQualifiedMethodName(Method) - Static method in class cn.t.util.common.ClassUtil
-
Return the qualified name of the given method, consisting of
fully qualified interface/class name + "." + method name.
- getQualifiedMethodName(Method, Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return the qualified name of the given method, consisting of
fully qualified interface/class name + "." + method name.
- getQualifiedName(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return the qualified name of the given class: usually simply
the class name, but component type class name + "[]" for arrays.
- getShortName(String) - Static method in class cn.t.util.common.ClassUtil
-
Get the class name without the qualified package name.
- getShortName(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Get the class name without the qualified package name.
- getShortNameAsProperty(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return the short string name of a Java class in uncapitalized JavaBeans
property format.
- getStaticMethod(Class<?>, String, Class<?>...) - Static method in class cn.t.util.common.ClassUtil
-
Return a public static method of a class.
- getType() - Method in class cn.t.util.common.GenericUtil.Generic
-
- getUserClass(Object) - Static method in class cn.t.util.common.ClassUtil
-
Return the user-defined class for the given instance: usually simply
the class of the given instance, but the original class in case of a
CGLIB-generated subclass.
- getUserClass(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Return the user-defined class for the given class: usually simply the given
class, but the original class in case of a CGLIB-generated subclass.
- IpUtil - Class in cn.t.util.common
-
- IpUtil() - Constructor for class cn.t.util.common.IpUtil
-
- isAllNumeric(String) - Static method in class cn.t.util.common.StringUtil
-
- isAssignable(Class<?>, Class<?>, String) - Static method in class cn.t.util.common.Assert
-
Assert that superType.isAssignableFrom(subType) is true.
- isAssignable(Class<?>, Class<?>) - Static method in class cn.t.util.common.Assert
-
Assert that superType.isAssignableFrom(subType) is true.
- isAssignable(Class<?>, Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check if the right-hand side type may be assigned to the left-hand side
type, assuming setting by reflection.
- isAssignableValue(Class<?>, Object) - Static method in class cn.t.util.common.ClassUtil
-
Determine if the given type is assignable from the given value,
assuming setting by reflection.
- isCacheSafe(Class<?>, ClassLoader) - Static method in class cn.t.util.common.ClassUtil
-
Check whether the given class is cache-safe in the given context,
i.e.
- isCglibProxy(Object) - Static method in class cn.t.util.common.ClassUtil
-
Check whether the given object is a CGLIB proxy.
- isCglibProxyClass(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check whether the specified class is a CGLIB-generated class.
- isCglibProxyClassName(String) - Static method in class cn.t.util.common.ClassUtil
-
Check whether the specified class name is a CGLIB-generated class.
- isEmojiCharacter(int) - Static method in class cn.t.util.common.StringUtil
-
判断是否包含Emoji符号
- isEmpty(Collection<?>) - Static method in class cn.t.util.common.CollectionUtil
-
- isEmpty(Map<?, ?>) - Static method in class cn.t.util.common.CollectionUtil
-
- isEmpty(Object[]) - Static method in class cn.t.util.common.ObjectUtil
-
- isEmpty(String) - Static method in class cn.t.util.common.StringUtil
-
- isFinal(Field) - Static method in class cn.t.util.common.ReflectUtil
-
- isFinal(int) - Static method in class cn.t.util.common.ReflectUtil
-
- isInstanceOf(Class<?>, Object, String) - Static method in class cn.t.util.common.Assert
-
Assert that the provided object is an instance of the provided class.
- isInstanceOf(Class<?>, Object) - Static method in class cn.t.util.common.Assert
-
Assert that the provided object is an instance of the provided class.
- isNotNull(Object) - Static method in class cn.t.util.common.ObjectUtil
-
- isNull(Object, String) - Static method in class cn.t.util.common.Assert
-
Assert that an object is null.
- isNull(Object) - Static method in class cn.t.util.common.Assert
-
- isNull(Object) - Static method in class cn.t.util.common.ObjectUtil
-
- isPresent(String, ClassLoader) - Static method in class cn.t.util.common.ClassUtil
-
Determine whether the
Class identified by the supplied name is present
and can be loaded.
- isPrimitiveArray(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check if the given class represents an array of primitives,
i.e.
- isPrimitiveOrWrapper(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check if the given class represents a primitive (i.e.
- isPrimitiveWrapper(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check if the given class represents a primitive wrapper,
i.e.
- isPrimitiveWrapperArray(Class<?>) - Static method in class cn.t.util.common.ClassUtil
-
Check if the given class represents an array of primitive wrappers,
i.e.
- isPublic(Field) - Static method in class cn.t.util.common.ReflectUtil
-
- isPublic(int) - Static method in class cn.t.util.common.ReflectUtil
-
- isPublicStaticFinal(Field) - Static method in class cn.t.util.common.ReflectUtil
-
- isTrue(boolean, String) - Static method in class cn.t.util.common.Assert
-
Assert a boolean expression, throwing an IllegalArgumentException
if the expression evaluates to false.
- isTrue(boolean) - Static method in class cn.t.util.common.Assert
-
- isUserLevelMethod(Method) - Static method in class cn.t.util.common.ClassUtil
-
Determine whether the given method is declared by the user or at least pointing to
a user-declared method.
- isVisible(Class<?>, ClassLoader) - Static method in class cn.t.util.common.ClassUtil
-
Check whether the given class is visible in the given ClassLoader.
- newCapacity(ByteBuffer, int) - Static method in class cn.t.util.common.ByteBufferUtil
-
- newCapacity(ByteBuffer) - Static method in class cn.t.util.common.ByteBufferUtil
-
- noNullElements(Object[], String) - Static method in class cn.t.util.common.Assert
-
Assert that an array contains no null elements.
- noNullElements(Object[]) - Static method in class cn.t.util.common.Assert
-
- notEmpty(Object[], String) - Static method in class cn.t.util.common.Assert
-
Assert that an array contains elements; that is, it must not be
null and must contain at least one element.
- notEmpty(Object[]) - Static method in class cn.t.util.common.Assert
-
- notEmpty(Collection<?>, String) - Static method in class cn.t.util.common.Assert
-
Assert that a collection contains elements; that is, it must not be
null and must contain at least one element.
- notEmpty(Collection<?>) - Static method in class cn.t.util.common.Assert
-
- notEmpty(Map<?, ?>, String) - Static method in class cn.t.util.common.Assert
-
Assert that a Map contains entries; that is, it must not be null
and must contain at least one entry.
- notEmpty(Map<?, ?>) - Static method in class cn.t.util.common.Assert
-
- notNull(Object, String) - Static method in class cn.t.util.common.Assert
-
Assert that an object is not null.
- notNull(Object) - Static method in class cn.t.util.common.Assert
-
- nowDateString() - Static method in class cn.t.util.common.DateUtil
-
获取当天字符串日期
- nowDateTimeString() - Static method in class cn.t.util.common.DateUtil
-
获取当天字符串时间
- nullSafeEquals(Object, Object) - Static method in class cn.t.util.common.ObjectUtil
-
Determine if the given objects are equal, returning true if
both are null or false if only one is null.
- nullSafeHashCode(Object) - Static method in class cn.t.util.common.ObjectUtil
-
Return as hash code for the given object; typically the value of
Object#hashCode()}.
- nullSafeHashCode(Object[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(boolean[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(byte[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(char[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(double[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(float[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(int[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(long[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.
- nullSafeHashCode(short[]) - Static method in class cn.t.util.common.ObjectUtil
-
Return a hash code based on the contents of the specified array.