Enum RegistryAttributeWrapper
- java.lang.Object
- 
- java.lang.Enum<RegistryAttributeWrapper>
- 
- gov.nasa.pds.registry.model.wrapper.RegistryAttributeWrapper
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<RegistryAttributeWrapper>
 
 public enum RegistryAttributeWrapper extends Enum<RegistryAttributeWrapper> Provides the values for a given attribute specified in a product class configuration file.- Version:
- $Revision: 11832 $
- Author:
- jpadams
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONTENT_VERSIONAttribute for Content Version.DESCRIPTIONAttribute for Description.GUIDAttribute for GUID.HOMEAttribute for Home.LOGICAL_IDENTIFIERAttribute for Logical Identifier.MIME_TYPEAttribute for MIME Type.NAMEAttribute for Product name.OBJECT_TYPEAttribute for Object Type.STATUSAttribute for Product status.VERSION_NAMEAttribute for Version Name.
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract ExtrinsicFilter.BuilderbuildOntoFilter(ExtrinsicFilter.Builder builder, String value)static RegistryAttributeWrapperget(String attributeName)StringgetName()abstract StringgetValueFromExtrinsic(ExtrinsicObject extObj)abstract List<String>getValuesFromExtrinsic(ExtrinsicObject extObj)static RegistryAttributeWrappervalueOf(String name)Returns the enum constant of this type with the specified name.static RegistryAttributeWrapper[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LOGICAL_IDENTIFIERpublic static final RegistryAttributeWrapper LOGICAL_IDENTIFIER Attribute for Logical Identifier.
 - 
NAMEpublic static final RegistryAttributeWrapper NAME Attribute for Product name.
 - 
OBJECT_TYPEpublic static final RegistryAttributeWrapper OBJECT_TYPE Attribute for Object Type.
 - 
MIME_TYPEpublic static final RegistryAttributeWrapper MIME_TYPE Attribute for MIME Type.
 - 
DESCRIPTIONpublic static final RegistryAttributeWrapper DESCRIPTION Attribute for Description.
 - 
GUIDpublic static final RegistryAttributeWrapper GUID Attribute for GUID.
 - 
HOMEpublic static final RegistryAttributeWrapper HOME Attribute for Home.
 - 
VERSION_NAMEpublic static final RegistryAttributeWrapper VERSION_NAME Attribute for Version Name.
 - 
CONTENT_VERSIONpublic static final RegistryAttributeWrapper CONTENT_VERSION Attribute for Content Version.
 - 
STATUSpublic static final RegistryAttributeWrapper STATUS Attribute for Product status.
 
- 
 - 
Method Detail- 
valuespublic static RegistryAttributeWrapper[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RegistryAttributeWrapper c : RegistryAttributeWrapper.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static RegistryAttributeWrapper valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getNamepublic String getName() 
 - 
getpublic static RegistryAttributeWrapper get(String attributeName) 
 - 
getValueFromExtrinsicpublic abstract String getValueFromExtrinsic(ExtrinsicObject extObj) 
 - 
getValuesFromExtrinsicpublic abstract List<String> getValuesFromExtrinsic(ExtrinsicObject extObj) 
 - 
buildOntoFilterpublic abstract ExtrinsicFilter.Builder buildOntoFilter(ExtrinsicFilter.Builder builder, String value) 
 
- 
 
-