java.lang.reflect.Field.isEnumConstant() Method Example



Description

The java.lang.reflect.Field.isEnumConstant() method returns true if this field represents an element of an enumerated type; returns false otherwise.

Declaration

Following is the declaration for java.lang.reflect.Field.isEnumConstant() method.

public boolean isEnumConstant()

Returns

a hash code value for this object.

Example

The following example shows the usage of java.lang.reflect.Field.isEnumConstant() method.

package com.tutorialspoint;

import java.lang.reflect.Field;

public class FieldDemo {

   public static void main(String[] args) throws NoSuchFieldException, 
      SecurityException, IllegalArgumentException, IllegalAccessException {
          
      Field field = SampleClass.class.getField("sampleField");
      System.out.println(field.isEnumConstant());
   }
}

class SampleClass {
   public static long sampleField = 5;
}

Let us compile and run the above program, this will produce the following result −

false
java_reflect_field.htm
Advertisements