Interface IEntry
-
- All Known Implementing Classes:
Entry
public interface IEntry
This interfaces represents a tuple of non-key parameters in a violation of a constraint. It allows access to the list of values and the value of each parameter individually.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getValue(java.lang.String propertyName)
Returns the value of a property with the given name.java.util.List<java.lang.Object>
getValues()
Returns a List of all property values of the entry.
-
-
-
Method Detail
-
getValue
java.lang.Object getValue(java.lang.String propertyName)
Returns the value of a property with the given name.- Parameters:
propertyName
- The requested property's name.- Returns:
- The property value or
null
if there is no such property.
-
getValues
java.util.List<java.lang.Object> getValues()
Returns a List of all property values of the entry.- Returns:
- The List of the property values.
-
-