The isVolatile(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the volatile modifier or not. If this integer parameter represents volatile… Read More
Tag Archives: java-lang-reflect-package
The isPrivate(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the private modifier or not. If this integer parameter represents private… Read More
The isAbstract(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the abstract modifier or not. If this integer parameter represents abstract… Read More
The isFinal(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the final modifier or not. If this integer parameter represents final… Read More
The isPublic(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the public modifier or not. If this integer parameter represents public… Read More
The isNative(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the native modifier or not. If this integer parameter represents native… Read More
The isProtected(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the protected modifier or not. If this integer parameter represents protected… Read More
The isInterface(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the interface modifier or not. If this integer parameter represents interface… Read More
The isStatic(mod) method of java.lang.reflect.Modifier is used to check if the integer argument includes the static modifier or not. If this integer parameter represents static… Read More
The getModifiers () method of java.lang.reflect.Field used to return the modifiers used for the field object as time of declaration, as an integer. The Modifier… Read More
The getAnnotatedType() method of java.lang.reflect.Field is used to return an annonatedType object that represents the use of a type to specify the declared type of… Read More
The getDeclaredAnnotations() method of java.lang.reflect.Field is used to return annotations that are directly present on this Field object and ignores inherited annotations. If there are… Read More
The getGenericType() method of java.lang.reflect.Field used to return a Type object representing the declared type of this Field object. The returned type object can be… Read More
The getAnnotation() method of java.lang.reflect.Field is used to return returns Field objects for the specified type if such an annotation is present, else null.This is… Read More
The isEnumConstant() method of java.lang.reflect.Field used to check if this field represents an element of an enumerated type or not. If this field represents an… Read More