- get() - Static method in class de.alpharogroup.check.Check
-
Gets the single Check instance.
- get(Class<?>) - Static method in class de.alpharogroup.lang.DefaultValue
-
Gets the default value from the given
Class.
- getAllDeclaredFieldNames(Class<?>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names including all fields from all super classes from the given
class object
- getAllDeclaredFieldNames(Class<?>, String...) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names including all fields from all super classes from the given
class object minus the given optional array of ignored field names
- getAllDeclaredFieldNames(Class<?>, List<String>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names including all fields from all super classes from the given
class object minus the given ignored field names
- getAllDeclaredFields(Class<?>, String...) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared fields including all fields from all super classes from the given class
object minus the given ignored fields
- getAllDeclaredFields(Class<?>, List<String>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared fields including all fields from all super classes from the given class
object minus the given ignored fields
- getBaseClass(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the parent base class from the given child class.
- getCallingMethodName(StackTraceElement[]) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the calling method name.
- getCglibProxy(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the real class if the given class is decorated with cglib proxy classes.
- getClass(T) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the
Class of the given object.
- getClass(Type) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Get the underlying class for a type, or null if the type is a variable type.
- getClassLoader() - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the current class loader.
- getClassLoader(Object) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the ClassLoader from the given object.
- getClassname(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the classname from the given class.
- getClassnameWithSuffix(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the classname and concats the suffix ".class" from the class.
- getClassnameWithSuffix(Object) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the classname and concats the suffix ".class" from the object.
- getClassType(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
- getClassType(Class<T>) - Static method in class de.alpharogroup.lang.ObjectExtensions
-
- getCurrentMethodName(StackTraceElement[]) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the current method name.
- getDeclaredField(T, String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the
Field that match to the given field name that exists in the given object.
- getDeclaredField(Class<?>, String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the
Field that match to the given field name that exists in the given class.
- getDeclaredFieldNames(Class<?>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names from the given class object.
- getDeclaredFieldNames(Class<?>, String...) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names from the given class object minus the given ignored field
names
Note: without the field names from any superclasses
- getDeclaredFieldNames(Class<?>, List<String>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all the declared field names from the given class object minus the given ignored field
names
Note: without the field names from any superclasses
- getDeclaredFields(Class<?>, List<String>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the declared fields from the given class minus the given ignored field names
- getDeclaredFields(Class<?>, String...) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the declared fields from the given class minus the given optional array of ignored field
names
- getDirectoriesFromResources(String, boolean) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the directories from the given path.
- getFieldNames(Class<?>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all field names from the given class as an String list.
- getFieldNames(Class<?>, List<String>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all field names from the given class as an String list minus the given ignored field
names
- getFieldNames(Class<?>, String...) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all field names from the given class as an String list minus the given optional array of
ignored field names
- getFieldValue(T, String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the field value of the given source object over the field name.
- getFirstTypeArgument(Class<? extends T>) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Gets the first type argument from the childClass.
- getFirstTypeArgument(Class<T>, Class<? extends T>) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Gets the first type argument from the childClass.
- getJarPath(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
If the given class is in a JAR file than the jar path as String will be returned.
- getJdkProxyInterfaces(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the jdk proxy interfaces.
- getManifestUrl(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
If the given class is in a JAR, WAR or EAR file than the manifest url as String is returned.
- getMethodNames(Class<?>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets all method names from the given class as an String array.
- getMethodNamesWithPrefixFromFieldNames(List<String>, String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Generates a Map with the fieldName as key and the method as value.
- getModifiers(Field) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
-
Gets the modifiers from the given Field as a list of String objects.
- getName(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Returns the name of the given class or null if the given class is null.
- getName(Class<?>, boolean) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Returns the name of the given class or null if the given class is null.
- getPackageName(Class<?>) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package name from the given class object.
- getPackageName(String) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package name from the given String(this must be the fully qualified class name
without the file extension).
- getPackageNameWithDot(Class<?>) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package name from the given class object and adds a dot at the end.
- getPackagePath(Class<?>) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given class object.
- getPackagePath(Object) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given object.
- getPackagePath(String) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given String object that is in the dot-format.
- getPackagePath(String, boolean) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given String object that is in the dot-format.
- getPackagePathWithSlash(Class<?>) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given object and adds a slash at the front.
- getPackagePathWithSlash(Object) - Static method in class de.alpharogroup.lang.PackageExtensions
-
Determines the package path from the given object and adds a slash at the front.
- getPath(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the path from the given class.
- getPathFromObject(Object) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Finds the absolute path from the object.
- getResource(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the url from the path back.
- getResource(Class<?>, String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the url from the path back.
- getResource(String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the URL from the resource.
- getResource(String, T) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the URL from the resource.
- getResourceAsFile(String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the resource as a file Object.
- getResourceAsFile(String, Object) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the resource as a file Object.
- getResourceAsStream(Class<?>, String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
This method call the getResourceAsStream from the ClassLoader.
- getResourceAsStream(String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the Inputstream from the resource.
- getResourceAsStream(String, Object) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gives the Inputstream from the resource.
- getResources(String) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets a list with urls from the given path for all resources.
- getSimpleName(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Returns the simple name of the given class or null if the given class is null.
- getTypeArgument(Class<? extends T>, int) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Gets the type argument from the childClass at the given index or null if it does not exists.
- getTypeArgument(Class<T>, Class<? extends T>, int) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Gets the type argument from the childClass at the given index or null if it does not exists.
- getTypeArguments(Class<? extends T>) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Get the actual type arguments from the given child class.
- getTypeArguments(Class<T>, Class<? extends T>) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Get the actual type arguments a child class has used to extend a generic base class.
- getTypeArgumentsAndParameters(ParameterizedType) - Static method in class de.alpharogroup.lang.TypeArgumentsExtensions
-
Gets the type arguments and parameters.
- getUnwrappedProxy(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Gets the unwrapped proxy class.
- getURL(Class<?>) - Static method in class de.alpharogroup.lang.ClassExtensions
-
Returns the URL from the given class.