Package jetbrains.mps.make
Enum MakeNotification.Kind
- java.lang.Object
 - 
- java.lang.Enum<MakeNotification.Kind>
 - 
- jetbrains.mps.make.MakeNotification.Kind
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<MakeNotification.Kind>
- Enclosing class:
 - MakeNotification
 
public static enum MakeNotification.Kind extends Enum<MakeNotification.Kind>
 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description SCRIPT_ABOUT_TO_STARTSCRIPT_FINISHEDSESSION_CLOSEDSESSION_OPENED 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MakeNotification.KindvalueOf(String name)Returns the enum constant of this type with the specified name.static MakeNotification.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared. 
 - 
 
- 
- 
Enum Constant Detail
- 
SCRIPT_ABOUT_TO_START
public static final MakeNotification.Kind SCRIPT_ABOUT_TO_START
 
- 
SCRIPT_FINISHED
public static final MakeNotification.Kind SCRIPT_FINISHED
 
- 
SESSION_OPENED
public static final MakeNotification.Kind SESSION_OPENED
 
- 
SESSION_CLOSED
public static final MakeNotification.Kind SESSION_CLOSED
 
 - 
 
- 
Method Detail
- 
values
public static MakeNotification.Kind[] 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 (MakeNotification.Kind c : MakeNotification.Kind.values()) System.out.println(c);
- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 
- 
valueOf
public static MakeNotification.Kind 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
 
 - 
 
 -