This commit is contained in:
aozhiwei 2020-06-27 21:13:57 +08:00
parent 54788a288d
commit 0f91f7ea2c

View File

@ -6,6 +6,14 @@ import java.util.List;
public class XObject {
public enum XObjectType
{
XOT_SIMPLE,
XOT_ARRAY,
XOT_OBJECT
}
private XObjectType type;
private XValue xValue;
private ArrayList arrayValue;
private HashMap objectValue;