public enum EntityState extends java.lang.Enum<EntityState>
Description:
Title:首亨软件 - TSS/CRM等
| 枚举常量和说明 | 
|---|
T_BODY
This token indicates, that an atomic entity is being parsed. 
 | 
T_END_BODYPART
This token indicates, that the MIME stream is currently
 at the end of a body part. 
 | 
T_END_HEADER
This token indicates, that part headers have now been
 parsed. 
 | 
T_END_MESSAGE
This token indicates, that the MIME stream is currently
 at the end of a message. 
 | 
T_END_MULTIPART
This token indicates, that a multipart body has been parsed. 
 | 
T_END_OF_STREAM
This token indicates, that the MIME stream has been completely
 and successfully parsed, and no more data is available. 
 | 
T_EPILOGUE
This token indicates, that a multiparts epilogue is being
 parsed. 
 | 
T_FIELD
This token indicates, that a message parts field has now
 been parsed. 
 | 
T_PREAMBLE
This token indicates, that a multiparts preamble is being
 parsed. 
 | 
T_RAW_ENTITY
This token indicates, that a raw entity is currently being processed. 
 | 
T_START_BODYPART
This token indicates, that the MIME stream is currently
 at the beginning of a body part. 
 | 
T_START_HEADER
This token indicates, that a message parts headers are now
 being parsed. 
 | 
T_START_MESSAGE
This token indicates, that the MIME stream is currently
 at the beginning of a message. 
 | 
T_START_MULTIPART
This token indicates, that a multipart body is being parsed. 
 | 
| 限定符和类型 | 方法和说明 | 
|---|---|
static EntityState | 
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。 
 | 
static EntityState[] | 
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。 
 | 
public static final EntityState T_START_MESSAGE
public static final EntityState T_END_MESSAGE
public static final EntityState T_RAW_ENTITY
public static final EntityState T_START_HEADER
public static final EntityState T_FIELD
public static final EntityState T_END_HEADER
public static final EntityState T_START_MULTIPART
public static final EntityState T_END_MULTIPART
public static final EntityState T_PREAMBLE
public static final EntityState T_EPILOGUE
public static final EntityState T_START_BODYPART
public static final EntityState T_END_BODYPART
public static final EntityState T_BODY
public static final EntityState T_END_OF_STREAM
public static EntityState[] values()
for (EntityState c : EntityState.values()) System.out.println(c);
public static EntityState valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值