com.bea.ales.management
Class AttributeValueType

java.lang.Object
  |
  +--com.bea.ales.management.AttributeValueType

public final class AttributeValueType
extends java.lang.Object

This class represents type of an attribute value in ALES management API. All possible types are listed as constants of this class.


Field Summary
static AttributeValueType BOOLEAN
          Specifies an attribute of type boolean.
static AttributeValueType DATE
          Specifies an attribute of type date.
static AttributeValueType INTEGER
          Specifies an attribute of type integer.
static AttributeValueType IP_ADDRESS
          Specifies an attribute of type IP address.
static AttributeValueType STRING
          Specifies an attribute of type string.
static AttributeValueType TIME
          Specifies an attribute of type time.
 
Method Summary
 boolean equals(java.lang.Object object)
          Check if some other object is equal to this one.
 int hashCode()
          Compute the hash code value for the object.
 java.lang.String toString()
          Convert the object to string representation.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

STRING

public static final AttributeValueType STRING
Specifies an attribute of type string.

INTEGER

public static final AttributeValueType INTEGER
Specifies an attribute of type integer.

BOOLEAN

public static final AttributeValueType BOOLEAN
Specifies an attribute of type boolean.

IP_ADDRESS

public static final AttributeValueType IP_ADDRESS
Specifies an attribute of type IP address.

DATE

public static final AttributeValueType DATE
Specifies an attribute of type date.

TIME

public static final AttributeValueType TIME
Specifies an attribute of type time.
Method Detail

toString

public java.lang.String toString()
Convert the object to string representation.

Overrides:
toString in class java.lang.Object

equals

public boolean equals(java.lang.Object object)
Check if some other object is equal to this one.

Parameters:
object - the reference object with which to compare.
Returns:
true if this object is the same as the obj argument; false otherwise.
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Compute the hash code value for the object.

Returns:
the hash code
Overrides:
hashCode in class java.lang.Object


Copyright © 2004-2008, Oracle and/or its affiliates. All rights reserved.