Package jetbrains.mps.persistence
Enum DefaultModelPersistence.ContentLoadingExtentOptions
- java.lang.Object
 - 
- java.lang.Enum<DefaultModelPersistence.ContentLoadingExtentOptions>
 - 
- jetbrains.mps.persistence.DefaultModelPersistence.ContentLoadingExtentOptions
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<DefaultModelPersistence.ContentLoadingExtentOptions>,ModelLoadingOption
- Enclosing class:
 - DefaultModelPersistence
 
public static enum DefaultModelPersistence.ContentLoadingExtentOptions extends Enum<DefaultModelPersistence.ContentLoadingExtentOptions> implements ModelLoadingOption
 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description INTERFACE_ONLYBoolean option for model loading, indicates loaded model cares about its interface aspects only.STRIP_IMPLEMENTATIONAn option for model loading, indicates loaded model doesn't care about implementation node. 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultModelPersistence.ContentLoadingExtentOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static DefaultModelPersistence.ContentLoadingExtentOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared. 
 - 
 
- 
- 
Enum Constant Detail
- 
STRIP_IMPLEMENTATION
public static final DefaultModelPersistence.ContentLoadingExtentOptions STRIP_IMPLEMENTATION
An option for model loading, indicates loaded model doesn't care about implementation node. For the time being, implementation node is the one with appropriate ConceptKind (designated according to concept's implemented interfaces). 
- 
INTERFACE_ONLY
public static final DefaultModelPersistence.ContentLoadingExtentOptions INTERFACE_ONLY
Boolean option for model loading, indicates loaded model cares about its interface aspects only. 
 - 
 
- 
Method Detail
- 
values
public static DefaultModelPersistence.ContentLoadingExtentOptions[] 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 (DefaultModelPersistence.ContentLoadingExtentOptions c : DefaultModelPersistence.ContentLoadingExtentOptions.values()) System.out.println(c);
- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 
- 
valueOf
public static DefaultModelPersistence.ContentLoadingExtentOptions 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
 
 - 
 
 -