Pacote | com.adobe.icc.enum |
Classe | public final class MimeType |
Herança | MimeType Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Elementos da API relacionados
Método | Definido por | ||
---|---|---|---|
[estático]
Converts a FILEEXT value to a TYPE value. | MimeType | ||
[estático]
Specifies whether the format represents image content. | MimeType | ||
[estático]
True if the format represents text content. | MimeType | ||
[estático]
Converts a FORMAT value to a FILEEXT value. | MimeType | ||
[estático]
Converts a FORMAT value to a TYPE value. | MimeType | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
[estático]
Converts a TYPE value to a FORMAT value. | MimeType | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
FILEEXT_GIF : String = "gif" [estático]
File: GIF image. | MimeType | ||
FILEEXT_JPEG : String = "jpeg" [estático]
File: JPEG image. | MimeType | ||
FILEEXT_JPG : String = "jpg" [estático]
File: JPG image. | MimeType | ||
FILEEXT_PNG : String = "png" [estático]
File: PNG image. | MimeType | ||
FILEEXT_TEXT : String = "txt" [estático]
File: Text-based (plain/unformatted text). | MimeType | ||
FILEEXT_XML : String = "xml" [estático]
File: XML-based (could be HTML, XHTML, plain XML, etc.). | MimeType | ||
FORMAT_GIF : String = "image/gif" [estático] Image Format: GIF content. | MimeType | ||
FORMAT_JPEG : String = "image/jpeg" [estático] Image Format: JPEG content. | MimeType | ||
FORMAT_JPG : String = "image/jpg" [estático] Image Format: JPG content. | MimeType | ||
FORMAT_PLAINTEXT : String = "text/plain" [estático] Text Format: Plain text content. | MimeType | ||
FORMAT_PNG : String = "image/png" [estático] Image Format: PNG content. | MimeType | ||
FORMAT_RICHTEXT : String = "text/html" [estático] Text Format: XHTML content. | MimeType | ||
FORMAT_XMLTEXT : String = "text/xml" [estático] Text Format: Flash HTML/Flex Rich Text content. | MimeType | ||
TYPE_GIF : String = "IMAGE_GIF" [estático]
Image Type: GIF content. | MimeType | ||
TYPE_JPEG : String = "IMAGE_JPEG" [estático]
Image Type: JPEG content. | MimeType | ||
TYPE_PLAINTEXT : String = "TEXT_PLAIN" [estático]
Text Type: Plain text content. | MimeType | ||
TYPE_PNG : String = "IMAGE_PNG" [estático]
Image Type: PNG content. | MimeType | ||
TYPE_RICHTEXT : String = "TEXT_RICH" [estático]
Text Type: XHTML content. | MimeType | ||
TYPE_XMLTEXT : String = "TEXT_XML" [estático]
Text Type: Flash HTML/Flex Rich Text content. | MimeType |
fileExtToType | () | método |
public static function fileExtToType(fileExt:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Converts a FILEEXT value to a TYPE value. FILEXT is a file extension.
Parâmetros
fileExt:String — The FILEEXT constant value to convert to a TYPE constant value.
|
String — Associated TYPE constant value.
|
Lança
Error — Invalid file extension.
|
formatIsImage | () | método |
public static function formatIsImage(format:String):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Specifies whether the format represents image content. Note that true is only returned if format
is explicitly set to
something recognized as an image.
Parâmetros
format:String — The format to inspect. One of the image format constants. For example, FORMAT_JPG, FORMAT_JPEG, or FORMAT_PNG.
|
Boolean — Boolean indicating whether the format represents image content
|
formatIsText | () | método |
public static function formatIsText(format:String):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
True if the format represents text content. Note that true is only returned if format
is explicitly set to
something recognized as text.
Parâmetros
format:String — The format to inspect. One of the text format constants. For example, FORMAT_RICHTEXT, FORMAT_XMLTEXT, or FORMAT_PLAINTEXT.
|
Boolean — the boolean value indicating if the format represents Text content.
|
formatToFileExt | () | método |
public static function formatToFileExt(format:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Converts a FORMAT value to a FILEEXT value. That is, a file extension.
Parâmetros
format:String — The FORMAT constant value to convert to a FILEEXT constant value.
|
String — Associated FILEEXT constant value.
|
Lança
Error — Invalid format.
|
formatToType | () | método |
public static function formatToType(format:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Converts a FORMAT value to a TYPE value.
Parâmetros
format:String — The FORMAT constant value to convert to a TYPE constant value.
|
String — Associated TYPE constant value.
|
Lança
Error — Invalid format.
|
typeToFormat | () | método |
public static function typeToFormat(type:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Converts a TYPE value to a FORMAT value.
Parâmetros
type:String — The TYPE const value to convert to a FORMAT const value.
|
String — Associated FORMAT const value.
|
Lança
Error — Invalid type.
|
FILEEXT_GIF | Constante |
public static const FILEEXT_GIF:String = "gif"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: GIF image.
FILEEXT_JPEG | Constante |
public static const FILEEXT_JPEG:String = "jpeg"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: JPEG image.
FILEEXT_JPG | Constante |
public static const FILEEXT_JPG:String = "jpg"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: JPG image.
FILEEXT_PNG | Constante |
public static const FILEEXT_PNG:String = "png"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: PNG image.
FILEEXT_TEXT | Constante |
public static const FILEEXT_TEXT:String = "txt"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: Text-based (plain/unformatted text).
FILEEXT_XML | Constante |
public static const FILEEXT_XML:String = "xml"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
File: XML-based (could be HTML, XHTML, plain XML, etc.).
FORMAT_GIF | Constante |
public static const FORMAT_GIF:String = "image/gif"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Format: GIF content.
FORMAT_JPEG | Constante |
public static const FORMAT_JPEG:String = "image/jpeg"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Format: JPEG content.
FORMAT_JPG | Constante |
public static const FORMAT_JPG:String = "image/jpg"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Format: JPG content.
FORMAT_PLAINTEXT | Constante |
public static const FORMAT_PLAINTEXT:String = "text/plain"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Format: Plain text content.
FORMAT_PNG | Constante |
public static const FORMAT_PNG:String = "image/png"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Format: PNG content.
FORMAT_RICHTEXT | Constante |
public static const FORMAT_RICHTEXT:String = "text/html"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Format: XHTML content.
FORMAT_XMLTEXT | Constante |
public static const FORMAT_XMLTEXT:String = "text/xml"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Format: Flash HTML/Flex Rich Text content.
TYPE_GIF | Constante |
public static const TYPE_GIF:String = "IMAGE_GIF"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Type: GIF content.
TYPE_JPEG | Constante |
public static const TYPE_JPEG:String = "IMAGE_JPEG"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Type: JPEG content.
TYPE_PLAINTEXT | Constante |
public static const TYPE_PLAINTEXT:String = "TEXT_PLAIN"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Type: Plain text content.
TYPE_PNG | Constante |
public static const TYPE_PNG:String = "IMAGE_PNG"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Image Type: PNG content.
TYPE_RICHTEXT | Constante |
public static const TYPE_RICHTEXT:String = "TEXT_RICH"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Type: XHTML content.
TYPE_XMLTEXT | Constante |
public static const TYPE_XMLTEXT:String = "TEXT_XML"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Text Type: Flash HTML/Flex Rich Text content.
Wed Jun 13 2018, 11:10 AM Z