1 | public BigInteger createPositiveIntegerFromString(EDataType eDataType, String initialValue)↵ | | 1 | public BigInteger createUnsignedLongFromString(EDataType eDataType, String initialValue)↵
|
2 | {↵ | | 2 | {↵
|
3 | return createNonNegativeIntegerFromString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, initialValue);↵ | | 3 | return createNonNegativeIntegerFromString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, initialValue);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * <!-- begin-user-doc -->↵ | | 6 | * <!-- begin-user-doc -->↵
|
7 | * <!-- end-user-doc -->↵ | | 7 | * <!-- end-user-doc -->↵
|
8 | * @generated↵ | | 8 | * @generated↵
|
9 | */↵ | | 9 | */↵
|
10 | public String convertPositiveInteger(BigInteger instanceValue)↵ | | 10 | public String convertUnsignedLong(BigInteger instanceValue)↵
|
11 | {↵ | | 11 | {↵
|
12 | return convertNonNegativeInteger(instanceValue);↵ | | 12 | return convertNonNegativeInteger(instanceValue);↵
|
13 | }↵ | | 13 | }↵
|
|
14 | /**↵ | | 14 | /**↵
|
15 | * <!-- begin-user-doc -->↵ | | 15 | * <!-- begin-user-doc -->↵
|
16 | * <!-- end-user-doc -->↵ | | 16 | * <!-- end-user-doc -->↵
|
17 | * @generated↵ | | 17 | * @generated↵
|
18 | */↵ | | 18 | */↵
|
19 | public String convertPositiveIntegerToString(EDataType eDataType, Object instanceValue)↵ | | 19 | public String convertUnsignedLongToString(EDataType eDataType, Object instanceValue)↵
|
20 | {↵ | | 20 | {↵
|
21 | return convertNonNegativeIntegerToString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, instanceValue); | | 21 | return convertNonNegativeIntegerToString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, instanceValue);
|