Package io.permazen.schema
Class EnumArraySchemaField
java.lang.Object
io.permazen.util.AbstractXMLStreaming
io.permazen.schema.SchemaItem
io.permazen.schema.SchemaField
io.permazen.schema.SimpleSchemaField
io.permazen.schema.AbstractEnumSchemaField
io.permazen.schema.EnumArraySchemaField
- All Implemented Interfaces:
DiffGenerating<SimpleSchemaField>
,Cloneable
An enum array field (of one or more dimensions) in a
SchemaObjectType
.-
Field Summary
Fields inherited from class io.permazen.schema.SchemaItem
NAME_PATTERN
Fields inherited from class io.permazen.util.AbstractXMLStreaming
log
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Deep-clone this instance.differencesFrom
(SimpleSchemaField other) Detect the differences of this instance when compared to the given instance.boolean
int
Get the number of enum array dimensions.final ItemType
Get theItemType
corresponding to this instance.Get theSchemaObjectType
of which this field is a member.final SchemaId
Generate a uniqueSchemaId
corresponding to the type and encoding structure of this schema item.int
hashCode()
final boolean
isLockedDown
(boolean includingStorageIds) Determine whether this instance is locked down.void
setDimensions
(int dimensions) Set the number of enum array dimensions.final void
setObjectType
(SchemaObjectType objectType) Set theSchemaObjectType
of which this field is a member.<R> R
visit
(SchemaFieldSwitch<R> target) Apply visitor pattern.final <T extends SchemaItem>
voidvisitSchemaItems
(Class<T> nodeType, Consumer<? super T> visitor) Visit this schema item and all of its descendents matching the given type with the given visitor.void
visitSchemaItems
(Consumer<? super SchemaItem> visitor) Visit allSchemaItem
descendents of this instance with the given visitor.Methods inherited from class io.permazen.schema.AbstractEnumSchemaField
getIdentifiers, hasFixedEncoding
Methods inherited from class io.permazen.schema.SimpleSchemaField
getEncodingId, getFullName, getParent, isAlwaysIndexed, isIndexed, setEncodingId, setIndexed, setParent, toString
Methods inherited from class io.permazen.schema.SchemaItem
differencesFrom, getName, getStorageId, setName, setStorageId
Methods inherited from class io.permazen.util.AbstractXMLStreaming
expect, expectClose, getAttr, getAttr, getBooleanAttr, getBooleanAttr, getIntAttr, getIntAttr, getLongAttr, newInvalidAttributeException, newInvalidInputException, newInvalidInputException, next, skip, writeAttr, writeCData, writeCharacters, writeElement, writeEmptyElement, writeStartElement
-
Field Details
-
ITEM_TYPE
TheItemType
that this class represents.
-
-
Constructor Details
-
EnumArraySchemaField
public EnumArraySchemaField()
-
-
Method Details
-
getDimensions
public int getDimensions()Get the number of enum array dimensions.- Returns:
- number of dimensions, a value from 1 to 255
-
setDimensions
public void setDimensions(int dimensions) Set the number of enum array dimensions.- Parameters:
dimensions
- number of dimensions- Throws:
UnsupportedOperationException
- if this instance is locked down
-
visit
Description copied from class:SchemaField
Apply visitor pattern.- Overrides:
visit
in classSimpleSchemaField
- Type Parameters:
R
- visitor return type- Parameters:
target
- target to invoke- Returns:
- value from the method of
target
corresponding to this instance's type
-
getItemType
Get theItemType
corresponding to this instance.- Overrides:
getItemType
in classSimpleSchemaField
- Returns:
- schema item type
-
differencesFrom
Description copied from interface:DiffGenerating
Detect the differences of this instance when compared to the given instance.- Specified by:
differencesFrom
in interfaceDiffGenerating<SimpleSchemaField>
- Overrides:
differencesFrom
in classAbstractEnumSchemaField
- Parameters:
other
- other instance- Returns:
- differences; will be empty if there are none detected
-
equals
- Overrides:
equals
in classAbstractEnumSchemaField
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractEnumSchemaField
-
clone
Deep-clone this instance.The returned instance will not be locked down even if this one is.
- Overrides:
clone
in classAbstractEnumSchemaField
-
getObjectType
Get theSchemaObjectType
of which this field is a member.- Returns:
- containing object type
-
setObjectType
Set theSchemaObjectType
of which this field is a member.Note: this field is considered derived information, and will be set automatically when a referrring
SchemaObjectType
is locked down.- Parameters:
objectType
- containing object type- Throws:
UnsupportedOperationException
- if this instance is locked down
-
visitSchemaItems
Visit allSchemaItem
descendents of this instance with the given visitor.If this instance is also a
SchemaItem
, then also visit this instance.The traversal is depth first, pre-order.
- Parameters:
visitor
- visitor for schema items- Throws:
IllegalArgumentException
- ifvisitor
is null
-
visitSchemaItems
public final <T extends SchemaItem> void visitSchemaItems(Class<T> nodeType, Consumer<? super T> visitor) Visit this schema item and all of its descendents matching the given type with the given visitor.The traversal is depth first, post-order.
- Parameters:
nodeType
- node type to includevisitor
- visitor for schema items- Throws:
IllegalArgumentException
- if either parameter is null
-
isLockedDown
public final boolean isLockedDown(boolean includingStorageIds) Determine whether this instance is locked down.- Parameters:
includingStorageIds
- false to test all but storage ID's, true to require storage ID's to be locked down as well- Returns:
- true if instance is locked down, otherwise false
-
getSchemaId
Generate a uniqueSchemaId
corresponding to the type and encoding structure of this schema item.The
SchemaId
does not depend on the storage ID.This instance must be locked down except for storage ID's. Repeated invocations of this method will be very fast, just returning the cached previous result.
- Returns:
- schema ID
- Throws:
IllegalStateException
- if this instance is not locked down- See Also:
-