Skip navigation links
A C D F G I N O R S V 

A

Argument - Class in de.alpharogroup.check
The class Argument that can assert conditions on arguments.
Argument() - Constructor for class de.alpharogroup.check.Argument
 

C

Check - Class in de.alpharogroup.check
The class Check can validate arguments in a chainable manner like a builder.
ClassType - Enum in de.alpharogroup.lang
The enum ClassType defines the types a class can have.
copyFieldValue(T, T, String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Copies the field value of the given source object to the given target object.

D

de.alpharogroup.check - package de.alpharogroup.check
This package provides utility classes for validate objects
de.alpharogroup.lang - package de.alpharogroup.lang
This package provides utility classes for the default value of objects
de.alpharogroup.reflection - package de.alpharogroup.reflection
This package contains utility classes for the reflection
DefaultValue - Class in de.alpharogroup.lang
The class DefaultValue provide the default values of the primitive types, as defined by the JLS.
DefaultValue() - Constructor for class de.alpharogroup.lang.DefaultValue
 

F

firstCharacterToUpperCase(String) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Sets the first character from the given string to upper case and returns it.

G

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
Gets the ClassType from the given class.
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.

I

isDefaultValue(Class<?>, T) - Static method in class de.alpharogroup.lang.ObjectExtensions
Checks if the given object has the default value.
isInRange(T, T, T, String) - Static method in class de.alpharogroup.check.Argument
Checks if the given value argument is in the given a range.
isInRange(Double, Double, Double, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is in the given a range.
isInRange(Float, Float, Float, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is in the given a range.
isInRange(Integer, Integer, Integer, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is in the given a range.
isInRange(Long, Long, Long, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is in the given a range.
isNotDefaultValue(Class<?>, T) - Static method in class de.alpharogroup.lang.ObjectExtensions
Checks if the given object has not the default value.
isNotSynthetic(Field) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Checks if the given Field is not synthetic

N

newInstance(T) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Creates a new instance from the same type as the given object.
newInstance(Class<T>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Creates a new instance from the same type as the given Class.
newInstanceWithObjenesis(Class<T>) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Creates a new instance from the same type as the given Class
notEmpty(C, String) - Static method in class de.alpharogroup.check.Argument
Checks if the given collection is not null or empty.
notEmpty(M, String) - Static method in class de.alpharogroup.check.Argument
Checks if the given map is not null or empty.
notEmpty(T, String) - Static method in class de.alpharogroup.check.Argument
Checks if the given argument is not empty.
notEmpty(C, String) - Method in class de.alpharogroup.check.Check
Checks if the given collection is not null or empty.
notEmpty(M, String) - Method in class de.alpharogroup.check.Check
Checks if the given map is not null or empty.
notEmpty(T, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is not empty.
notNull(T, String) - Static method in class de.alpharogroup.check.Argument
Checks if the given argument is not null.
notNull(T, String) - Method in class de.alpharogroup.check.Check
Checks if the given argument is not null.

O

ObjectExtensions - Class in de.alpharogroup.lang
The class ObjectExtensions provides extension methods to check if the object is the default value.
ObjectExtensions() - Constructor for class de.alpharogroup.lang.ObjectExtensions
 

R

ReflectionExtensions - Class in de.alpharogroup.reflection
The class ReflectionExtensions provides utility methods for the java reflection API
ReflectionExtensions() - Constructor for class de.alpharogroup.reflection.ReflectionExtensions
 

S

setFieldValue(T, String, Object) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Sets the field value of the given source object over the field name.
setFieldValue(Class<?>, String, Object) - Static method in class de.alpharogroup.reflection.ReflectionExtensions
Sets the field value of the given class object over the field name.

V

valueOf(String) - Static method in enum de.alpharogroup.lang.ClassType
Returns the enum constant of this type with the specified name.
values() - Static method in enum de.alpharogroup.lang.ClassType
Returns an array containing the constants of this enum type, in the order they are declared.
A C D F G I N O R S V 
Skip navigation links

Copyright © 2015–2019 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.