public enum RelationType extends Enum<RelationType>
| Enum Constant and Description |
|---|
Cites
Indicates that A includes B in a citation.
|
Compiles
Indicates B is the result of a compile or creation event using A.
|
Continues
Indicates A is a continuation of the work B.
|
Describes
Indicates A describes B.
|
Documents
Indicates A is documentatio n about/B.
|
HasMetadata
Indicates resource A has additional metadata B.
|
HasPart
Indicates A includes the part B.
|
HasVersion
Indicates A has a version B.
|
IsCitedBy
Indicates that B includes A in a citation.
|
IsCompiledBy
Indicates B is used to compile or create A.
|
IsContinuedBy
Indicates A is continued by the work B.
|
IsDerivedFrom
Indicates B is a source upon which A is based.
|
IsDescribedBy
Indicates A is described by B.
|
IsDocumentedBy
Indicates B is documentatio n about/ explaining A.
|
IsIdenticalTo
Indicates that A is identical to B, for use when there is a need to register two separate instances of the same resource.
|
IsMetadataFor
Indicates additional metadata A for a resource B.
|
IsNewVersionOf
Indicates A is a new edition of B, where the new edition has been modified or updated.
|
IsObsoletedBy
Indicates A replaces B.
|
IsOriginalFormOf
Indicates A is the original form of B.
|
IsPartOf
Indicates A is a portion of B; may be used for elements of a series.
|
IsPreviousVersionOf
Indicates A is a previous edition of B.
|
IsReferencedBy
Indicates A is used as a source of information by B.
|
IsRequiredBy
Indicates A is required by B.
|
IsReviewedBy
Indicates that A is reviewed by B.
|
IsSourceOf
Indicates A is a source upon which B is based.
|
IsSupplementedBy
Indicates that B is a supplement to A.
|
IsSupplementTo
Indicates that A is a supplement to B.
|
IsVariantFormOf
Indicates A is a variant or different form of B, e.g.
|
IsVersionOf
Indicates A is a version of B.
|
Obsoletes
Indicates A is replaced by B.
|
References
Indicates B is used as a source of information for A.
|
Requires
Indicates A requires B.
|
Reviews
Indicates that A is a review of B.
|
| Modifier and Type | Method and Description |
|---|---|
static RelationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationType IsCitedBy
public static final RelationType Cites
public static final RelationType IsSupplementTo
public static final RelationType IsSupplementedBy
public static final RelationType IsContinuedBy
public static final RelationType Continues
public static final RelationType Describes
public static final RelationType IsDescribedBy
public static final RelationType HasMetadata
public static final RelationType IsMetadataFor
public static final RelationType HasVersion
public static final RelationType IsVersionOf
public static final RelationType IsNewVersionOf
public static final RelationType IsPreviousVersionOf
public static final RelationType IsPartOf
public static final RelationType HasPart
public static final RelationType IsReferencedBy
public static final RelationType References
public static final RelationType IsDocumentedBy
public static final RelationType Documents
public static final RelationType IsCompiledBy
public static final RelationType Compiles
public static final RelationType IsVariantFormOf
public static final RelationType IsOriginalFormOf
public static final RelationType IsIdenticalTo
public static final RelationType IsReviewedBy
public static final RelationType Reviews
public static final RelationType IsDerivedFrom
public static final RelationType IsSourceOf
public static final RelationType IsRequiredBy
public static final RelationType Requires
public static final RelationType IsObsoletedBy
public static final RelationType Obsoletes
public static RelationType[] values()
for (RelationType c : RelationType.values()) System.out.println(c);
public static RelationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2019. All rights reserved.