| java.lang.Object argparser.LongHolder
LongHolder | public class LongHolder implements java.io.Serializable(Code) | | Wrapper class which ``holds'' a long value,
enabling methods to return long values through
arguments.
|
Field Summary | |
public long | value Value of the long, set and examined
by the application as needed. |
Constructor Summary | |
public | LongHolder() Constructs a new LongHolder with an initial
value of 0. | public | LongHolder(long l) Constructs a new LongHolder with a
specific initial value. |
value | public long value(Code) | | Value of the long, set and examined
by the application as needed.
|
LongHolder | public LongHolder()(Code) | | Constructs a new LongHolder with an initial
value of 0.
|
LongHolder | public LongHolder(long l)(Code) | | Constructs a new LongHolder with a
specific initial value.
Parameters: l - Initial long value. |
|
|