JavaTM 2 Platform
Standard Ed. 6

javax.swing.text.html.parser
類別 Entity

java.lang.Object
  繼承者 javax.swing.text.html.parser.Entity
所有已實作的介面:
DTDConstants

public final class Entity
extends Object
implements DTDConstants

使用 ENTITY 建構在 DTD 中描述了一個實體。它定義該實體的型別和值。

另請參見:
DTD

欄位摘要
 char[] data
           
 String name
           
 int type
           
 
從介面 javax.swing.text.html.parser.DTDConstants 繼承的欄位
ANY, CDATA, CONREF, CURRENT, DEFAULT, EMPTY, ENDTAG, ENTITIES, ENTITY, FIXED, GENERAL, ID, IDREF, IDREFS, IMPLIED, MD, MODEL, MS, NAME, NAMES, NMTOKEN, NMTOKENS, NOTATION, NUMBER, NUMBERS, NUTOKEN, NUTOKENS, PARAMETER, PI, PUBLIC, RCDATA, REQUIRED, SDATA, STARTTAG, SYSTEM
 
建構子摘要
Entity(String name, int type, char[] data)
          創建一個實體。
 
方法摘要
 char[] getData()
          返回 data
 String getName()
          獲取實體的名稱。
 String getString()
          返回以 String 表示的資料。
 int getType()
          獲取實體的型別。
 boolean isGeneral()
          如果是常規實體,則返回 true
 boolean isParameter()
          如果為參數實體,則返回 true
static int name2type(String nm)
          將 nm 字元串轉換為相應的實體型別。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

欄位詳細資訊

name

public String name

type

public int type

data

public char[] data
建構子詳細資訊

Entity

public Entity(String name,
              int type,
              char[] data)
創建一個實體。

參數:
name - 實體的名稱
type - 實體的型別
data - 資料的 char 陣列
方法詳細資訊

getName

public String getName()
獲取實體的名稱。

返回:
String 表示的實體名稱

getType

public int getType()
獲取實體的型別。

返回:
實體的型別

isParameter

public boolean isParameter()
如果為參數實體,則返回 true

返回:
如果為參數實體,則返回 true

isGeneral

public boolean isGeneral()
如果是常規實體,則返回 true

返回:
如果是常規實體,則返回 true

getData

public char[] getData()
返回 data

返回:
data

getString

public String getString()
返回以 String 表示的資料。

返回:
String 表示的資料

name2type

public static int name2type(String nm)
nm 字元串轉換為相應的實體型別。如果該字元串沒有相應的實體型別,則返回與“CDATA”對應的型別。有效的實體型別有:"PUBLIC"、"CDATA"、"SDATA"、"PI"、"STARTTAG"、"ENDTAG"、"MS"、"MD" 和 "SYSTEM"。

參數:
nm - 要轉換的字元串
返回:
相應的實體型別,如果不存在,則返回與 "CDATA" 對應的型別

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only