Class DomainDefinition
java.lang.Object
com.aquima.interactions.foundation.convert.Convertable
com.aquima.interactions.foundation.types.ListValue
com.aquima.interactions.metamodel.impl.DomainDefinition
- All Implemented Interfaces:
IConvertable
,IListValue
,IValue
,IDomainDefinition
,Serializable
Implementation of the domain definition interface. The domain definition holds the static definition of a domain
defined in the meta model. The order of the values in a domain is important, hence this class extends the ListValue
class, as to avoid automatic reshuffling of the values.
- Since:
- 5.0
- Author:
- O. Kerpershoek
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
DomainDefinition
(IDomainDS datasource, IDomainValuesFactory domainFactory) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addValue
(IDomainValueDefinition definition) boolean
This method returns the description of the domain.getDomainValue
(IPrimitiveValue value) Obtains the domain value definition for a particular value, if it exists.getDomainValueAt
(int index) Returns the domain value definition at the specified zero-based index.Returns all the domain value definitions.getName()
Name of the domain definition as defined in the studio.int
hashCode()
boolean
This method returns a boolean indicating if the values for the domain will be provided by an external source.toString()
Methods inherited from class com.aquima.interactions.foundation.types.ListValue
addAll, addValue, clearValues, contains, duplicate, getDataType, getInternalValues, getSortedValues, getValue, getValueAt, getValueCount, getValues, insertValue, isEmpty, isRangeValue, isSingleValue, isUniqueSet, isUnknown, removeValue, toListValue, toRangeValue, toSingleValue, unknownFor
Methods inherited from class com.aquima.interactions.foundation.convert.Convertable
booleanValue, dateValue, doubleValue, integerValue, longValue, stringValue
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.aquima.interactions.foundation.convert.IConvertable
booleanValue, dateValue, doubleValue, getValue, integerValue, longValue, stringValue
Methods inherited from interface com.aquima.interactions.foundation.IListValue
getSortedValues, getValueAt, getValueCount, getValues, isEmpty, isUniqueSet
Methods inherited from interface com.aquima.interactions.foundation.IValue
contains, duplicate, getDataType, isRangeValue, isSingleValue, isUnknown, toListValue, toRangeValue, toSingleValue
-
Constructor Details
-
DomainDefinition
protected DomainDefinition(IDomainDS datasource, IDomainValuesFactory domainFactory) throws InitializationException - Throws:
InitializationException
-
-
Method Details
-
getName
Description copied from interface:IDomainDefinition
Name of the domain definition as defined in the studio.- Specified by:
getName
in interfaceIDomainDefinition
- Returns:
- Name of the domain definition as defined in the studio
-
getDescription
Description copied from interface:IDomainDefinition
This method returns the description of the domain. The description of a domain is only used for informational purposes.- Specified by:
getDescription
in interfaceIDomainDefinition
- Returns:
- the description of the domain.
-
isExternalDomain
public boolean isExternalDomain()Description copied from interface:IDomainDefinition
This method returns a boolean indicating if the values for the domain will be provided by an external source. The boolean is used mainly for validation purposes, as an external domain will not have any values during definition in studio.- Specified by:
isExternalDomain
in interfaceIDomainDefinition
- Returns:
- a boolean indicating if the values for the domain will be provided by an external source.
-
getDomainValue
Description copied from interface:IDomainDefinition
Obtains the domain value definition for a particular value, if it exists. null is returned if no corresponding domain value exists.- Specified by:
getDomainValue
in interfaceIDomainDefinition
- Parameters:
value
- the primitive value for which the corresponding domain value definition should be retrieved.- Returns:
- the domain value definition corresponding with `value`, or null if none exists.
-
getDomainValueAt
Description copied from interface:IDomainDefinition
Returns the domain value definition at the specified zero-based index. The value of the returned domain value definition is the same as the value returned byIListValue.getValueAt(int)
at the same index.This method should be used over
IListValue.getValueAt(int)
when additional information about the domain value is needed (such as presentation styles).The total number of domain values may be obtained using
IListValue.getValueCount()
.- Specified by:
getDomainValueAt
in interfaceIDomainDefinition
- Parameters:
index
- the index of the domain value definition- Returns:
- the domain value definition
-
getDomainValues
Description copied from interface:IDomainDefinition
Returns all the domain value definitions. The values in each domain value definition at index n is the same as the value at index n in the array returned byIListValue.getValues()
.This method should be used over
IListValue.getValues()
when additional information about the domain values is needed (such as presentation styles).- Specified by:
getDomainValues
in interfaceIDomainDefinition
- Returns:
- all domain values
-
addValue
-
equals
-
hashCode
public int hashCode() -
toString
-