KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > reflect > Modifier

java.lang.reflect
Class Modifier

java.lang.Object
  extended by java.lang.reflect.Modifier
See Also:
Top Examples, Source Code, Class.getModifiers(), Member.getModifiers()

public static final int ABSTRACT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int FINAL
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int INTERFACE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isAbstract(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1669]Difference between abstract class and interface
By Anonymous on 2005/11/04 20:23:08  Rate
An Abstract class declares have at least one instance method that is declared abstract which will be implemented by the subclasses. An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior.

public static boolean isFinal(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isInterface(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isNative(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isPrivate(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isProtected(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isPublic(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isStatic(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isStrict(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isSynchronized(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isTransient(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static boolean isVolatile(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Modifier()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int NATIVE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int PRIVATE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int PROTECTED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int PUBLIC
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int STATIC
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int STRICT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int SYNCHRONIZED
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static String toString(int mod)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int TRANSIENT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final int VOLATILE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags