Modifier.fieldModifiers() has the following syntax.
public static int fieldModifiers()
In the following code shows how to use Modifier.fieldModifiers() method.
import java.lang.reflect.Modifier; public class Main { public static void main(String... args) throws Exception { System.out.println(Modifier.toString(Modifier.fieldModifiers())); } }
The code above generates the following result.