Field[] fields = Math.class.getDeclaredFields(); for (Field f : fields) if (Modifier.isStatic(f.getModifiers())) System.out.println(f.getName());