Enum ClassifierKind
- java.lang.Object
 - 
- java.lang.Enum<ClassifierKind>
 - 
- jetbrains.mps.stubs.javastub.classpath.ClassifierKind
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<ClassifierKind>
public enum ClassifierKind extends Enum<ClassifierKind>
 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATIONSCLASSENUMINTERFACEUNKNOWN 
- 
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ClassifierKindgetClassifierKind(int flag)static ClassifierKindgetClassifierKind(InputStream inp)Deprecated.static ClassifierKindgetClassifierKind(org.jetbrains.org.objectweb.asm.ClassReader reader)static ClassifierKindvalueOf(String name)Returns the enum constant of this type with the specified name.static ClassifierKind[]values()Returns an array containing the constants of this enum type, in the order they are declared. 
 - 
 
- 
- 
Enum Constant Detail
- 
CLASS
public static final ClassifierKind CLASS
 
- 
INTERFACE
public static final ClassifierKind INTERFACE
 
- 
ANNOTATIONS
public static final ClassifierKind ANNOTATIONS
 
- 
ENUM
public static final ClassifierKind ENUM
 
- 
UNKNOWN
public static final ClassifierKind UNKNOWN
 
 - 
 
- 
Method Detail
- 
values
public static ClassifierKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ClassifierKind c : ClassifierKind.values()) System.out.println(c);
- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 
- 
valueOf
public static ClassifierKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
 name- the name of the enum constant to be returned.- Returns:
 - the enum constant with the specified name
 - Throws:
 IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
 
- 
getClassifierKind
public static ClassifierKind getClassifierKind(org.jetbrains.org.objectweb.asm.ClassReader reader)
 
- 
getClassifierKind
@Deprecated public static ClassifierKind getClassifierKind(InputStream inp) throws IOException
Deprecated.- Throws:
 IOException
 
- 
getClassifierKind
public static ClassifierKind getClassifierKind(int flag)
 
 - 
 
 -