net.rim.pushsdk.commons.content
Class GifImageContent
java.lang.Object
net.rim.pushsdk.commons.content.Content
net.rim.pushsdk.commons.content.SinglePartContent
net.rim.pushsdk.commons.content.BinaryContent
net.rim.pushsdk.commons.content.GifImageContent
public class GifImageContent
- extends BinaryContent
Represents GIF image content. The content-type header is set to image/gif.
- Author:
- mdandrea
|
Constructor Summary |
GifImageContent(byte[] content,
boolean shouldBase64Encode)
Constructs a GIF image with the specified content. |
GifImageContent(File file,
boolean shouldBase64Encode)
Constructs a GIF image from the specified file. |
GifImageContent(URL url,
boolean shouldBase64Encode)
Constructs a GIF image from the specified URL. |
|
Method Summary |
protected void |
checkExtension(String string)
Verifies that the image ends in the .gif file extension. |
String |
toString()
Constructs a String with all attributes in name = value format. |
GifImageContent
public GifImageContent(byte[] content,
boolean shouldBase64Encode)
- Constructs a GIF image with the specified content. The image is base64 encoded if requested.
- Parameters:
content - the GIF image contentshouldBase64Encode - true if the content should be base64 encoded; false otherwise
GifImageContent
public GifImageContent(File file,
boolean shouldBase64Encode)
throws IOException
- Constructs a GIF image from the specified file. The image is base64 encoded if requested.
- Parameters:
file - the GIF image fileshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the file
GifImageContent
public GifImageContent(URL url,
boolean shouldBase64Encode)
throws IOException
- Constructs a GIF image from the specified URL. The image is base64 encoded if requested.
- Parameters:
url - the GIF image URLshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the URL
checkExtension
protected void checkExtension(String string)
- Verifies that the image ends in the .gif file extension.
- Overrides:
checkExtension in class SinglePartContent
- Parameters:
string - the file name
toString
public String toString()
- Constructs a
String with all attributes in name = value format.
- Overrides:
toString in class BinaryContent
- Returns:
- a
String representation of this object.
Copyright © 2011 Research In Motion. All Rights Reserved.