public class CustClassList
extends java.lang.Object
CustomizationClass
Constructor and Description |
---|
CustClassList(CustomizationClass... custClassList)
Create a CustClassList containing the given Customization Classes.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object custClassListObj)
Checks if two
CustClassList instances are equal. |
int |
hashCode()
Returns a hash code value for the object.
|
CustomizationClass |
item(int index)
Get the Customization Class at the given (0 based) index.
|
int |
size()
Get the number of customization classes in this list.
|
public CustClassList(CustomizationClass... custClassList)
custClassList
- An array of CustomizationClasses.public boolean equals(java.lang.Object custClassListObj)
CustClassList
instances are equal. Returns
true if and only if both objects have same class, same
array of CustomizationsClass
instance like same size, and
all corresponding pairs of elements in the two arrays are equal.
In other words, two arrays are defined to be equal if they contain the
same elements in the same order.
CustomizationClass
equals
in class java.lang.Object
custClassListObj
- another CustClassList
instance to
compare with.true
if both are equal, false
otherwise.public int hashCode()
hashCode
in class java.lang.Object
public CustomizationClass item(int index)
index
- The number of the customization class to return.public int size()