1 | BigInteger createPositiveInteger(String literal);↵ | | 1 | BigInteger createUnsignedLong(String literal);↵
|
|
2 | /**↵ | | 2 | /**↵
|
3 | * Returns a literal representation of an instance of data type '<em>Positive Integer</em>'.↵ | | 3 | * Returns a literal representation of an instance of data type '<em>Unsigned Long</em>'.↵
|
4 | * <!-- begin-user-doc -->↵ | | 4 | * <!-- begin-user-doc -->↵
|
5 | * <!-- end-user-doc -->↵ | | 5 | * <!-- end-user-doc -->↵
|
6 | * @param instanceValue an instance value of the data type.↵ | | 6 | * @param instanceValue an instance value of the data type.↵
|
7 | * @return a literal representation of the instance value.↵ | | 7 | * @return a literal representation of the instance value.↵
|
8 | * @generated↵ | | 8 | * @generated↵
|
9 | */↵ | | 9 | */↵
|
10 | String convertPositiveInteger(BigInteger instanceValue); | | 10 | String convertUnsignedLong(BigInteger instanceValue);
|