org.inxar.affirm
Interface Erratum
- public interface Erratum
An Erratum
is the 'error' data parallel to the
Datum
interface. It acts as a container which holds
the key upon which Affirmation
failed and a list of
Detail
objects (typically implemented as a linked
list). To view the error messages the occurred while affirming the
key, iterate through the Detail
objects.
Method Summary |
Detail |
details()
Returns the head of a linked list that each hold an error
message. |
java.lang.Object |
getKey()
Returns the key upon which these error are relevant. |
getKey
public java.lang.Object getKey()
- Returns the key upon which these error are relevant.
details
public Detail details()
- Returns the head of a linked list that each hold an error
message.