Java Reflection - Java Modifier VOLATILE








Syntax

Modifier.VOLATILE has the following syntax.

public static final int VOLATILE

Example

In the following code shows how to use Modifier.VOLATILE field.

import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
//from  ww  w .  j ava  2  s . com
public class Main {
  public static void main(String... args) throws Exception {
    Class<?> c = Class.forName("java.lang.String");
    Constructor[] allConstructors = c.getDeclaredConstructors();
    for (Constructor ctor : allConstructors) {
      int searchMod = Modifier.VOLATILE;
      int mods = accessModifiers(ctor.getModifiers());
      if (searchMod == mods) {
        System.out.println(ctor);
      }
    }
  }

  private static int accessModifiers(int m) {
    return m & Modifier.VOLATILE;
  }
}