Class CodeList<E extends CodeList<E>>
- Type Parameters:
E- The type of this code list.
- All Implemented Interfaces:
Serializable, Comparable<E>
- Direct Known Subclasses:
AssociationType, AxisDirection, BandDefinition, CellGeometry, CharacterSet, Classification, Context, CoverageContentType, Datatype, DateType, DimensionNameType, EvaluationMethodType, GeometricObjectType, GeometryType, ImagingCondition, InitiativeType, KeywordType, MaintenanceFrequency, MediumFormat, MediumName, ObjectiveType, Obligation, OnLineFunction, OperationType, PixelInCell, PixelOrientation, PolarizationOrientation, PositionableProjection, PresentationForm, Priority, Progress, RangeMeaning, Restriction, Role, ScopeCode, Sequence, SpatialRepresentationType, TopicCategory, TopologyLevel, TransferFunctionType, Trigger, VerticalDatumType
values() method
which returns all CodeList element in an array of the appropriate class.
Code lists are extensible, i.e. invoking the valueOf(String) method in any subclass
will automatically add the newly created CodeList element in the array to be returned
by values().
- Since:
- 1.0
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceUsed byvalueOf(Class, Filter)to select codes matching an arbitrary criterion. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCodeList(String name, Collection<E> values) Creates a new code list element and add it to the given collection. -
Method Summary
Modifier and TypeMethodDescriptionfinal intcompareTo(E other) Compares this code with the specified object for order.abstract E[]family()Returns the list of codes of the same kind as this code.Returns the identifier declared in theUMLannotation, ornullif none.final Stringname()Returns the programmatic name of this code list constant.String[]names()Returns all the names of this code.final intordinal()Returns the ordinal of this code constant.protected ObjectResolves the code list to an unique instance after deserialization.Returns a string representation of this code list.static <T extends CodeList<T>>
TReturns the code of the given type that matches the given name, or returns a new one if none match it.static <T extends CodeList<T>>
TvalueOf(Class<T> codeType, CodeList.Filter filter) Returns the code of the given type that matches the given criterion, or returns a new one if none match it.
-
Constructor Details
-
CodeList
Creates a new code list element and add it to the given collection. Subclasses will typically give a static reference to anArrayListfor thevaluesargument. This list is used forvalues()method implementations.- Parameters:
name- The code name.values- The collection to add the element to.
-
-
Method Details
-
valueOf
Returns the code of the given type that matches the given name, or returns a new one if none match it. More specifically, this methods returns the first element of the given class wherename().equals(name)returnedtrue. If no such element is found, then a new instance is created using the constructor expecting a singleStringargument.Implementation note: The
codeTypeclass needs to be initialized before to invoke this method. This is usually the case when the caller is a static method of thecodeTypeclass. However in other situations, callers may need to initialize explicitly the given class.- Type Parameters:
T- The compile-time type given as thecodeTypeparameter.- Parameters:
codeType- The type of code list.name- The name of the code to obtain, ornull.- Returns:
- A code matching the given name, or
nullif the name is null.
-
valueOf
Returns the code of the given type that matches the given criterion, or returns a new one if none match it. More specifically, this methods returns the first element (in declaration order) of the given class wherefilter.accept(code)returnstrue. If no such element is found, then there is a choice:- If
CodeList.Filter.codename()returnsnull, then this method returnsnull. - Otherwise a new instance is created using the constructor expecting a single
Stringargument, which is given the value returned bycodename().
- Type Parameters:
T- The compile-time type given as thecodeTypeparameter.- Parameters:
codeType- The type of code list.filter- The criterion for the code to obtain.- Returns:
- A code matching the given criterion, or
nullif their is no match andCodeList.Filter.codename()returnsnull. - Since:
- 2.3
- If
-
family
Returns the list of codes of the same kind as this code. This is similar to the staticvalues()method provided inCodeListsubclasses, except thatfamily()does not require the class to be known at compile-time - provided that at leat one instance of the family is available. The staticvalues()method has the opposite constraints (does not require a code instance, but the class needs to be known at compile time unless reflection is used).- Returns:
- The codes of the same kind as this code.
-
names
Returns all the names of this code. The returned array contains the following elements, with duplicated values and null values removed:- The programmatic name
- The UML identifier
- The charset name
(
CharacterSetcode list only)
Those names are typically equal except for the case (programmatic names are upper case while UML names are lower case) and special characters like
'-'.- Returns:
- All names of this code constant. This array is never null and never empty.
- Since:
- 2.3
-
name
Returns the programmatic name of this code list constant. This is the name of the public static field which declare the code.- Returns:
- The name of this code constant.
-
identifier
-
ordinal
public final int ordinal()Returns the ordinal of this code constant. This is its position in its elements declaration, where the initial constant is assigned an ordinal of zero.- Returns:
- The position of this code constants in elements declaration.
-
compareTo
Compares this code with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.Code list constants are only comparable to other code list constants of the same type. The natural order implemented by this method is the order in which the constants are declared.
- Specified by:
compareToin interfaceComparable<E extends CodeList<E>>- Parameters:
other- The code constant to compare with this code.- Returns:
- A negative value if the given code is less than this code, a positive value if greater or 0 if equal.
-
toString
-
readResolve
Resolves the code list to an unique instance after deserialization. The instance is resolved using its name only (not its ordinal).- Returns:
- This code list as an unique instance.
- Throws:
ObjectStreamException- if the deserialization failed.
-