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 String
CONDITION_KEY
static String
REFERENCE_KEY
static String
REP_TECH_GROUP_KEY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
containsCondition()
Test if the condition field exists.boolean
containsReference()
Test if the reference field exists.boolean
containsRepTechGroup()
Test if the RepTechGroup field exists.String
getCondition()
Get the condition.String
getReference()
Get the reference.String
getRepTechGroup()
Get the RepTechGroup.boolean
isReference()
Get the reference.void
setCondition(String newCondition)
Set the condition.void
setReference(boolean newReference)
Set the reference.void
setReference(String newReference)
Set the reference.void
setRepTechGroup(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
-
-