public static class Properties.Long extends Properties.Value
| Modifier and Type | Field and Description |
|---|---|
static char |
TYPE |
long |
value |
type, typeStr| Constructor and Description |
|---|
Long(long value) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Compares this object to the specified object.
|
int |
hashCode()
Returns a hash code for this
Long. |
java.lang.String |
toString() |
public static final char TYPE
public long value
public java.lang.String toString()
toString in class Properties.Valuepublic int hashCode()
Long. The result is the exclusive OR of the two halves of the
primitive long value held by this Long object. That is, the hashcode is the value of
the expression: (int) (this.value ˆ (this.value >>> 32))
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Object