Interface ExperimentSampleMetadata
-
- All Superinterfaces:
Metadata
- All Known Implementing Classes:
ExperimentSampleMetadataImpl,UnmodifiableExperimentSampleMetadata
public interface ExperimentSampleMetadata extends Metadata
This inteface defines the experiment sample metadata.- Since:
- 2.0
- Author:
- Xavier Bauquet
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONDITION_KEYstatic StringREFERENCE_KEYstatic StringREP_TECH_GROUP_KEY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontainsCondition()Test if the condition field exists.booleancontainsReference()Test if the reference field exists.booleancontainsRepTechGroup()Test if the RepTechGroup field exists.StringgetCondition()Get the condition.StringgetReference()Get the reference.StringgetRepTechGroup()Get the RepTechGroup.booleanisReference()Get the reference.voidsetCondition(String newCondition)Set the condition.voidsetReference(boolean newReference)Set the reference.voidsetReference(String newReference)Set the reference.voidsetRepTechGroup(String newReptechGroup)Set the ReptechGroup.
-
-
-
Field Detail
-
REP_TECH_GROUP_KEY
static final String REP_TECH_GROUP_KEY
- See Also:
- Constant Field Values
-
REFERENCE_KEY
static final String REFERENCE_KEY
- See Also:
- Constant Field Values
-
CONDITION_KEY
static final String CONDITION_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getRepTechGroup
String getRepTechGroup()
Get the RepTechGroup.- Returns:
- the RepTechGroup
-
getReference
String getReference()
Get the reference.- Returns:
- the reference
-
isReference
boolean isReference()
Get the reference.- Returns:
- the reference
-
getCondition
String getCondition()
Get the condition.- Returns:
- the condition
-
setRepTechGroup
void setRepTechGroup(String newReptechGroup)
Set the ReptechGroup.- Parameters:
newReptechGroup- the new ReptechGroup
-
setReference
void setReference(boolean newReference)
Set the reference.- Parameters:
newReference- the new reference
-
setReference
void setReference(String newReference)
Set the reference.- Parameters:
newReference- the new reference
-
setCondition
void setCondition(String newCondition)
Set the condition.- Parameters:
newCondition- the new condition
-
containsRepTechGroup
boolean containsRepTechGroup()
Test if the RepTechGroup field exists.- Returns:
- true if the RepTechGroup field exists
-
containsReference
boolean containsReference()
Test if the reference field exists.- Returns:
- true if the reference field exists
-
containsCondition
boolean containsCondition()
Test if the condition field exists.- Returns:
- true if the condition field exists
-
-