Class PrimaryKey
PrimaryKey uniquely identifies a record in a table.
The composition of a primary key is defined in the data model using the element osd:table/primaryKeys.
A PrimaryKey is used to perform direct
lookups
in a table. The string that represents it internally
is also used as the value of foreign keys, namely fields declared as osd:tableRef.
However, the shortest way to look up a record from an osd:tableRef field is to
directly invoke the method SchemaFacetTableRef.getLinkedRecord(ValueContext).
External applications which access and input data containing osd:tableRef
fields must conform to the internal syntax described below in Syntax of the internal
String
representation of primary keys.
Factory and conversion
Factory and conversion methods are as follows:
- to get the
PrimaryKeyof an existing record:Adaptation.getOccurrencePrimaryKey(); - to create a
PrimaryKeyinstance from aValueContext:AdaptationTable.computePrimaryKey(ValueContext); - to create a
PrimaryKeyinstance from concrete field values:AdaptationTable.computePrimaryKey(Object[]); - to convert concrete field values to the internal representation string:
parseObjects(Object[], SchemaNode[])(low-level method); - to convert the internal representation string to a
PrimaryKeyinstance:parseString(String); - to convert a
PrimaryKeyinstance to the internal representation string:format(). - to decompose an internal representation string to the actual primary key field(s) value(s):
SchemaNode.getTablePrimaryKeyValues(String).
Syntax of the internal String representation of primary keys
To simplify declaration, representation, and persistence, a primary key
is handled as a String, even when it is composed of several fields.
Note that the fields composing a primary key are returned by the method
SchemaNode.getTablePrimaryKeyNodes().
Specifically, the string is built as follows:
-
The value of the primary key field is formatted according to
the XML Schema standard, as implemented by the method
SchemaNode.formatToXsString(Object). -
If the primary key is composed of several fields,
field values are separated by a "|" pipe, represented by the constant
SEPARATOR_CHAR. This may require the following "\" escapes (represented by the constantESCAPE_CHAR) in a component field, in the case where its own value is not a foreign key:- each "|" character in the field value is escaped by a "\";
- each "\" character in the field value is escaped by "\";
In the following examples, the first column shows a primary key value
that is composed of two fields, and the second column gives
its corresponding tableRef or PrimaryKey
value:
| Primary key field values | String representation |
|---|---|
| "1", "2" | "1|2" |
| "1", "2|3" | "1|2\|3" if the second field is not a foreign key "1|2|3" if the second field is a foreign key |
| "1|2", "3" | "1\|2|3" if the first field is not a foreign key "1|2|3" if the first field is a foreign key |
| "1\", "2" | "1\\|2" |
Validity of the String representation of primary keys
If the String representation of a primary key is not structurally valid,
an InvalidPrimaryKeyException is thrown. The following table gives some
examples:
| Key structure | String representation | Structural validity |
|---|---|---|
| (xs:string) | "" (empty string) | Valid. Will look up a record with a single primary key field set to an empty string. |
| (xs:int) | "" (empty string) | Invalid, throws an InvalidPrimaryKeyException. |
| (xs:int) | "aa" (invalid integer) | Invalid, throws an InvalidPrimaryKeyException. |
| (xs:int | xs:string) | "aa|aaa" (invalid integer field) | Invalid, throws an InvalidPrimaryKeyException. |
| (xs:int | xs:string) | "|aaa" | Invalid, throws an InvalidPrimaryKeyException. |
| (xs:int | xs:string) | "" (empty string) | Invalid, throws an InvalidPrimaryKeyException. |
| (xs:int | xs:string) | "aaa" | Invalid, throws an InvalidPrimaryKeyException. |
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final charCharacter ("\") used for escaping a pipe ("|") or backslash ("\") character if it occurs in the value of a non-foreign-key field.static final StringSingle pipe character ("|") separator between two fields, when primary key is a composite of multiple fields.static final charSingle pipe character ("|") separator between two fields, when primary key is a composite of multiple fields.static final PrimaryKeyPrimaryKeywith an empty string as its internal representation. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanReturnstrueif the specified object has the same logical content of this instance.final booleanequalsToPrimaryKey(PrimaryKey aPrimaryKey) Returnstrueif the specified object has the same logical content of this instance.abstract Stringformat()Returns the internalStringrepresentation of thisPrimaryKeyinstance.abstract inthashCode()static PrimaryKeyDeprecated.static StringparseObjects(Object[] fieldsValues, SchemaNode[] fieldsNodes) Returns the internal representation string that corresponds to the concrete values of aPrimaryKey.static PrimaryKeyparseString(String aTableRefValue) Returns thePrimaryKeythat corresponds to the specified internal representationString.final StringtoString()
-
Field Details
-
VOID_KEY
PrimaryKeywith an empty string as its internal representation. -
SEPARATOR
Single pipe character ("|") separator between two fields, when primary key is a composite of multiple fields.- See Also:
-
SEPARATOR_CHAR
public static final char SEPARATOR_CHARSingle pipe character ("|") separator between two fields, when primary key is a composite of multiple fields.- See Also:
-
ESCAPE_CHAR
public static final char ESCAPE_CHARCharacter ("\") used for escaping a pipe ("|") or backslash ("\") character if it occurs in the value of a non-foreign-key field.- See Also:
-
-
Method Details
-
parseString
Returns thePrimaryKeythat corresponds to the specified internal representationString.Warning: The specified string must comply with the internal representation syntax rules. This implies that the method should generally only be used to convert the value of a "foreign key" field (a node declared as
osd:tableRef). For a list of other available factory methods, see Factory and conversion methods. -
parseObjects
Returns the internal representation string that corresponds to the concrete values of aPrimaryKey.Note: It is generally recommended to use one of the
AdaptationTable.computePrimaryKeymethods instead of this one.For more information about the internal representation syntax, see Syntax of the internal
Stringrepresentation of primary keys.- Throws:
IllegalArgumentException- if one argument isnull, if both specified arrays do not have the same length.ClassCastException- if one value is not of the expected Java type.- See Also:
-
parseList
Deprecated.This method does not support the use of certain characters in the elements of the specifiedList. -
hashCode
public abstract int hashCode() -
equals
Returnstrueif the specified object has the same logical content of this instance.Caution: this method requires that if the specified object is a
PrimaryKey, then it has the same structure as the one of this instance. -
equalsToPrimaryKey
Returnstrueif the specified object has the same logical content of this instance.Caution: this method requires that the specified primary key has the same structure as the one of this instance.
-
format
Returns the internalStringrepresentation of thisPrimaryKeyinstance.For more information about the internal representation syntax, see Syntax of the internal
Stringrepresentation of primary keys.From a given table node, it is possible to decompose this string to the actual primary key fields values, by invoking
SchemaNode.getTablePrimaryKeyValues(String).- See Also:
-
toString
-
List.