Uses of Class
com.sodius.mdw.core.model.RichTextType

Packages that use RichTextType
com.sodius.mdw.core.model Contains the model framework to manage model, metamodel and related model elements. 
 

Uses of RichTextType in com.sodius.mdw.core.model
 

Fields in com.sodius.mdw.core.model declared as RichTextType
static RichTextType RichTextType.PLAIN_TEXT_LITERAL
           
static RichTextType RichTextType.RTF_LITERAL
           
static RichTextType RichTextType.XHTML_LITERAL
           
 

Fields in com.sodius.mdw.core.model with type parameters of type RichTextType
static List<RichTextType> RichTextType.VALUES
           
 

Methods in com.sodius.mdw.core.model that return RichTextType
static RichTextType RichTextType.get(int value)
           
static RichTextType RichTextType.get(String name)
           
 RichTextType RichText.getType()
          Return the format of the underlying text.
 

Methods in com.sodius.mdw.core.model with parameters of type RichTextType
 RichText RichText.convert(RichTextType type)
          Converts the wrapped text into the specified format.
 RichText RichText.convert(RichTextType type, Map<String,?> options)
          Converts the wrapped text into the specified format.
static RichText RichText.valueOf(String text, RichTextType type)
          Creates a new RichText instance wrapping the specified text, whose underlying format is known by the caller.