org.restlet.gwt.resource
Class StringRepresentation

java.lang.Object
  extended by org.restlet.gwt.resource.Variant
      extended by org.restlet.gwt.resource.Representation
          extended by org.restlet.gwt.resource.StringRepresentation

public class StringRepresentation
extends Representation

Represents an Unicode string that can be converted to any character set supported by Java.

Author:
Jerome Louvel

Field Summary
 
Fields inherited from class org.restlet.gwt.resource.Representation
UNKNOWN_SIZE
 
Constructor Summary
StringRepresentation(java.lang.String text)
          Constructor.
StringRepresentation(java.lang.String text, Language language)
          Constructor.
StringRepresentation(java.lang.String text, MediaType mediaType)
          Constructor.
StringRepresentation(java.lang.String text, MediaType mediaType, Language language)
          Constructor.
StringRepresentation(java.lang.String text, MediaType mediaType, Language language, CharacterSet characterSet)
          Constructor.
 
Method Summary
 java.lang.String getText()
          Converts the representation to a string value.
 void release()
          Closes and releases the input stream.
 void setCharacterSet(CharacterSet characterSet)
          Sets the character set or null if not applicable.
 void setText(java.lang.String text)
          Sets the string value.
protected  void updateSize()
          Updates the expected size according to the current string value.
 
Methods inherited from class org.restlet.gwt.resource.Representation
createEmpty, getDownloadName, getExpirationDate, getModificationDate, getSize, getTag, isAvailable, isDownloadable, isTransient, setAvailable, setDownloadable, setDownloadName, setExpirationDate, setModificationDate, setSize, setTag, setTransient
 
Methods inherited from class org.restlet.gwt.resource.Variant
getCharacterSet, getEncodings, getIdentifier, getLanguages, getMediaType, setEncodings, setIdentifier, setIdentifier, setLanguages, setMediaType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringRepresentation

public StringRepresentation(java.lang.String text)
Constructor. The following metadata are used by default: "text/plain" media type, no language and the ISO-8859-1 character set.

Parameters:
text - The string value.

StringRepresentation

public StringRepresentation(java.lang.String text,
                            Language language)
Constructor. The following metadata are used by default: "text/plain" media type, no language and the ISO-8859-1 character set.

Parameters:
text - The string value.
language - The language.

StringRepresentation

public StringRepresentation(java.lang.String text,
                            MediaType mediaType)
Constructor. The following metadata are used by default: no language and the ISO-8859-1 character set.

Parameters:
text - The string value.
mediaType - The media type.

StringRepresentation

public StringRepresentation(java.lang.String text,
                            MediaType mediaType,
                            Language language)
Constructor. The following metadata are used by default: ISO-8859-1 character set.

Parameters:
text - The string value.
mediaType - The media type.
language - The language.

StringRepresentation

public StringRepresentation(java.lang.String text,
                            MediaType mediaType,
                            Language language,
                            CharacterSet characterSet)
Constructor.

Parameters:
text - The string value.
mediaType - The media type.
language - The language.
characterSet - The character set.
Method Detail

getText

public java.lang.String getText()
Description copied from class: Representation
Converts the representation to a string value. Be careful when using this method as the conversion of large content to a string fully stored in memory can result in OutOfMemoryErrors being thrown.

Specified by:
getText in class Representation
Returns:
The representation as a string value.

release

public void release()
Closes and releases the input stream.

Overrides:
release in class Representation

setCharacterSet

public void setCharacterSet(CharacterSet characterSet)
Description copied from class: Variant
Sets the character set or null if not applicable.

Overrides:
setCharacterSet in class Variant
Parameters:
characterSet - The character set or null if not applicable.

setText

public void setText(java.lang.String text)
Sets the string value.

Parameters:
text - The string value.

updateSize

protected void updateSize()
Updates the expected size according to the current string value.



Copyright © 2005-2008 Noelios Technologies.