public class AttributeType extends Object
attributeType complex type에 대한 Java 클래스입니다.
다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
<complexType name="attributeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="type" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="E"/> <enumeration value="G"/> <enumeration value="GE"/> </restriction> </simpleType> </attribute> <attribute name="seq" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> <minInclusive value="1"/> </restriction> </simpleType> </attribute> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="datatype" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="STRING"/> <enumeration value="NUMBER"/> <enumeration value="DATE"/> <enumeration value="ARRAY"/> </restriction> </simpleType> </attribute> <attribute name="length" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> <minInclusive value="1"/> </restriction> </simpleType> </attribute> <attribute name="precision"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}integer"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
datatype |
protected String |
id |
protected BigInteger |
length |
protected String |
name |
protected BigInteger |
precision |
protected BigInteger |
seq |
protected String |
type |
Constructor and Description |
---|
AttributeType() |
Modifier and Type | Method and Description |
---|---|
String |
getDatatype()
datatype 속성의 값을 가져옵니다.
|
String |
getId()
id 속성의 값을 가져옵니다.
|
BigInteger |
getLength()
length 속성의 값을 가져옵니다.
|
String |
getName()
name 속성의 값을 가져옵니다.
|
BigInteger |
getPrecision()
precision 속성의 값을 가져옵니다.
|
BigInteger |
getSeq()
seq 속성의 값을 가져옵니다.
|
String |
getType()
type 속성의 값을 가져옵니다.
|
void |
setDatatype(String value)
datatype 속성의 값을 설정합니다.
|
void |
setId(String value)
id 속성의 값을 설정합니다.
|
void |
setLength(BigInteger value)
length 속성의 값을 설정합니다.
|
void |
setName(String value)
name 속성의 값을 설정합니다.
|
void |
setPrecision(BigInteger value)
precision 속성의 값을 설정합니다.
|
void |
setSeq(BigInteger value)
seq 속성의 값을 설정합니다.
|
void |
setType(String value)
type 속성의 값을 설정합니다.
|
protected String type
protected BigInteger seq
protected String id
protected String name
protected String datatype
protected BigInteger length
protected BigInteger precision
public void setType(String value)
value
- allowed object is
String
public BigInteger getSeq()
BigInteger
public void setSeq(BigInteger value)
value
- allowed object is
BigInteger
public void setName(String value)
value
- allowed object is
String
public void setDatatype(String value)
value
- allowed object is
String
public BigInteger getLength()
BigInteger
public void setLength(BigInteger value)
value
- allowed object is
BigInteger
public BigInteger getPrecision()
BigInteger
public void setPrecision(BigInteger value)
value
- allowed object is
BigInteger
Copyright © 2019 POSCOICT. All rights reserved.