Login | Register
My pages Projects Community openCollabNet

The Tigris site will receive a major upgrade the evening of Monday, December 1, beginning at 8:30 pm PST. Downtime is projected to be about ten hours. Further details in the announcement


jmt.codebase
Interface Modifier


public interface Modifier

Describes a modifier of a class, interface, method or field.

The Modifier type is used in the bytesource and javasource sub-packages.

Author:
Martin Kersten

Method Summary
 boolean isAbstract()
          Returns true if the modifier is abstract.
 boolean isFinal()
          Return true if the modifier is final.
 boolean isInterface()
          Return true if the modifier is describing an interface.
 boolean isNative()
          Return true if the modifier is native.
 boolean isPrivate()
          Return true if the modifier is private.
 boolean isProtected()
          Return true if the modifier is protected.
 boolean isPublic()
          Return true if the modifier is public.
 boolean isStatic()
          Return true if the modifier is static
 boolean isStrict()
          Return true if the modifier is strictfp.
 boolean isSynchronized()
          Return true if the modifier is synchronized.
 boolean isTransient()
          Return true if the modifier is transient.
 boolean isVolatile()
          Return true if the modifier is volatile.
 

Method Detail

isAbstract

public boolean isAbstract()
Returns true if the modifier is abstract.

Returns:
true if the modifier is abstract

isFinal

public boolean isFinal()
Return true if the modifier is final.

Returns:
true if the modifier is final

isInterface

public boolean isInterface()
Return true if the modifier is describing an interface.

Returns:
true if the modifier describes an interface

isNative

public boolean isNative()
Return true if the modifier is native.

Returns:
true if the modifier is native

isPrivate

public boolean isPrivate()
Return true if the modifier is private.

Returns:
true if the modifier is private

isProtected

public boolean isProtected()
Return true if the modifier is protected.

Returns:
true if the modifier is protected

isPublic

public boolean isPublic()
Return true if the modifier is public.

Returns:
true if the modifier is public

isStatic

public boolean isStatic()
Return true if the modifier is static

Returns:
true true if the modifier is static

isStrict

public boolean isStrict()
Return true if the modifier is strictfp.

Returns:
true true if the modifier is static

isSynchronized

public boolean isSynchronized()
Return true if the modifier is synchronized.

Returns:
true true if the modifier is synchronized

isTransient

public boolean isTransient()
Return true if the modifier is transient.

Returns:
true true if the modifier is transient

isVolatile

public boolean isVolatile()
Return true if the modifier is volatile.

Returns:
true if the modifier is volatile