enum Example {
	INSTANCE {
	};
	public static void main(String[] args) {
		System.out.println(Example.INSTANCE.getClass().getEnumConstants());
	}
}