- 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<?>) - 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
- getClassType(Class<T>) - Static method in class de.alpharogroup.lang.ObjectExtensions
-
- 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
- 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.
- 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.