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