com.sapportals.portal.prt.service.soap.types
Class UnsignedLong

java.lang.Object
  |
  +--com.sapportals.portal.prt.service.soap.types.UnsignedLong

public class UnsignedLong
extends java.lang.Object

Description : Class that represents a Unsigned Long datatype by parsing and interpreting a string. UnsignedLong is +derived+ from nonNegativeInteger by setting the value of +maxInclusive+ to be 18446744073709551615 (i.e 2^64-1) Project : soap FileName : UnsignedLong.java Copyright : SAP Copyright (c) Company : SAP GBU IP

Version:
8 juil. 03

Field Summary
static java.math.BigInteger MAX_VALUE
           
static java.math.BigInteger MIN_VALUE
           
 
Constructor Summary
UnsignedLong(java.lang.String s)
           
 
Method Summary
 java.lang.String getContent()
           
 java.math.BigInteger getValue()
           
static void main(java.lang.String[] args)
           
 void setContent(java.lang.String string)
           
 void setValue(java.math.BigInteger integer)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

MAX_VALUE

public static java.math.BigInteger MAX_VALUE

MIN_VALUE

public static java.math.BigInteger MIN_VALUE
Constructor Detail

UnsignedLong

public UnsignedLong(java.lang.String s)
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

getContent

public java.lang.String getContent()
Returns:
 

getValue

public java.math.BigInteger getValue()
Returns:
 

setContent

public void setContent(java.lang.String string)
Parameters:
string -  

setValue

public void setValue(java.math.BigInteger integer)
Parameters:
integer -  

main

public static void main(java.lang.String[] args)