public abstract class Sequence extends AbstractData
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Creates a deep copy of
this object. |
boolean |
equals(java.lang.Object that)
Compares this object to another
Sequence to see if they are equal. |
int |
hashCode()
Returns a hash code value for the object.
|
public java.lang.Object clone()
AbstractData
this
object.clone
in class AbstractData
public boolean equals(java.lang.Object that)
Sequence
to see if they are equal. Two Sequence
objects are considered equal if and only if they have the same type and their corresponding
pairs of components are equal. (Two components, c1
and c2
,
are equal if c1 == null ? c2 == null : c1.equals(c2)
).equals
in class java.lang.Object
that
- the Sequence
object to be compared to.public int hashCode()
hashCode
in class java.lang.Object
Copyright © 2024 OSS Nokalva, Inc. All rights reserved.
This document is proprietary to OSS Nokalva, Inc., and may be used only by their direct licensees. Distribution is not permitted. This copyright statement must not be removed.