Java.Lang.Reflect.Modifier: Method Members

The methods of Java.Lang.Reflect.Modifier are listed below. For a list of all members, see the Modifier Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
ClassModifiers() : int
Returns a mask of all the modifiers that may be applied to classes.
static
ConstructorModifiers() : int
Returns a mask of all the modifiers that may be applied to constructors.
static
FieldModifiers() : int
Returns a mask of all the modifiers that may be applied to fields.
static
InterfaceModifiers() : int
Returns a mask of all the modifiers that may be applied to interfaces.
static
IsAbstract(int) : bool
Returns true if the given modifiers contain Modifier.Abstract.
static
IsFinal(int) : bool
Returns true if the given modifiers contain Modifier.Final.
static
IsInterface(int) : bool
Returns true if the given modifiers contain Modifier.Interface.
static
IsNative(int) : bool
Returns true if the given modifiers contain Modifier.Native.
static
IsPrivate(int) : bool
Returns true if the given modifiers contain Modifier.Private.
static
IsProtected(int) : bool
Returns true if the given modifiers contain Modifier.Protected.
static
IsPublic(int) : bool
Returns true if the given modifiers contain Modifier.Public.
static
IsStatic(int) : bool
Returns true if the given modifiers contain Modifier.Static.
static
IsStrict(int) : bool
Returns true if the given modifiers contain Modifier.Strict.
static
IsSynchronized(int) : bool
Returns true if the given modifiers contain Modifier.Synchronized.
static
IsTransient(int) : bool
Returns true if the given modifiers contain Modifier.Transient.
static
IsVolatile(int) : bool
Returns true if the given modifiers contain Modifier.Volatile.
static
MethodModifiers() : int
Returns a mask of all the modifiers that may be applied to methods.
static
ToString(int) : string
Returns a string containing the string representation of all modifiers present in the specified modifiers.