PhoneNumber
Inheritance: java.lang.Object
All Implemented Interfaces: java.lang.Comparable, com.aspose.ms.System.IEquatable
public class PhoneNumber implements Comparable<PhoneNumber>, System.IEquatable<PhoneNumber>
Represents a phone number.
Constructors
Constructor | Description |
---|---|
PhoneNumber() |
Methods
Method | Description |
---|---|
compareTo(PhoneNumber obj) | Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. |
equals(PhoneNumber obj) | Determines whether the specified Object is equal to the current Object. |
equals(PhoneNumber x, PhoneNumber y) | Determines whether the specified object instances are considered equal. |
equals(Object obj) | Determines whether the specified Object is equal to the current Object. |
getCategory() | Gets or sets an object category |
getClass() | |
getNumber() | Gets or sets a phone number |
getPrefered() | Gets or sets a value which defines whether phone number is preferred. |
hashCode() | GetHashCode returns a hash function for this object. |
hashCode(PhoneNumber obj) | GetHashCode returns a hash function for specified object. |
notify() | |
notifyAll() | |
op_Equality(PhoneNumber a, PhoneNumber b) | Determines whether the specified objects are equal. |
op_Inequality(PhoneNumber a, PhoneNumber b) | Determines whether the specified objects are not equal. |
setCategory(PhoneNumberCategory value) | Gets or sets an object category |
setNumber(String value) | Gets or sets a phone number |
setPrefered(boolean value) | Gets or sets a value which defines whether phone number is preferred. |
toString() | Returns a string that represents the current object. |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
PhoneNumber()
public PhoneNumber()
compareTo(PhoneNumber obj)
public final int compareTo(PhoneNumber obj)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | PhoneNumber | An object to compare with this instance, or null. |
Returns: int - This method returns: a value less than 0 if this is less than value 0 if this is equal to value a value greater than 0 if this is greater than value
equals(PhoneNumber obj)
public final boolean equals(PhoneNumber obj)
Determines whether the specified Object is equal to the current Object.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | PhoneNumber | The Object to compare with the current Object. |
Returns: boolean - Returns a boolean indicating if the passed in object obj is Equal to this.
equals(PhoneNumber x, PhoneNumber y)
public final boolean equals(PhoneNumber x, PhoneNumber y)
Determines whether the specified object instances are considered equal.
Parameters:
Parameter | Type | Description |
---|---|---|
x | PhoneNumber | The first object to compare. |
y | PhoneNumber | The second object to compare. |
Returns: boolean - true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.
equals(Object obj)
public boolean equals(Object obj)
Determines whether the specified Object is equal to the current Object.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | java.lang.Object | The Object to compare with the current Object. |
Returns: boolean - Returns a boolean indicating if the passed in object obj is Equal to this.
getCategory()
public final PhoneNumberCategory getCategory()
Gets or sets an object category
Returns: PhoneNumberCategory
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getNumber()
public final String getNumber()
Gets or sets a phone number
Returns: java.lang.String
getPrefered()
public final boolean getPrefered()
Gets or sets a value which defines whether phone number is preferred.
Returns: boolean
hashCode()
public int hashCode()
GetHashCode returns a hash function for this object.
Returns: int - Returns a hash function for this object.
hashCode(PhoneNumber obj)
public int hashCode(PhoneNumber obj)
GetHashCode returns a hash function for specified object.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | PhoneNumber | The Object for which a hash code is to be returned. |
Returns: int - Returns a hash function for specified object.
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
op_Equality(PhoneNumber a, PhoneNumber b)
public static boolean op_Equality(PhoneNumber a, PhoneNumber b)
Determines whether the specified objects are equal.
Parameters:
Parameter | Type | Description |
---|---|---|
a | PhoneNumber | First object to compare |
b | PhoneNumber | Second object to compare |
Returns: boolean - Returns true if objects are equal, otherwise false.
op_Inequality(PhoneNumber a, PhoneNumber b)
public static boolean op_Inequality(PhoneNumber a, PhoneNumber b)
Determines whether the specified objects are not equal.
Parameters:
Parameter | Type | Description |
---|---|---|
a | PhoneNumber | First object to compare |
b | PhoneNumber | Second object to compare |
Returns: boolean - Returns true if objects are not equal, otherwise false.
setCategory(PhoneNumberCategory value)
public final void setCategory(PhoneNumberCategory value)
Gets or sets an object category
Parameters:
Parameter | Type | Description |
---|---|---|
value | PhoneNumberCategory |
setNumber(String value)
public final void setNumber(String value)
Gets or sets a phone number
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setPrefered(boolean value)
public final void setPrefered(boolean value)
Gets or sets a value which defines whether phone number is preferred.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
toString()
public String toString()
Returns a string that represents the current object.
Returns: java.lang.String - Returns a string that represents the current object.
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |