Repository for the HealthTool which enables Apple users to analyse their health data from the Apple health app and prepares the data for contributing it for future studies on wearable data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

49 lines
910 B

package application.helpers.wrappers;
import application.enums.EntryType;
/**
* This class represents an element of the level of {@link EntryType}s as it
* saves the {@link EntryType} and the corresponding value (e.g. de_DE for
* region code) or the count of data entries of this type (e.g. 10 for records).
*
* @author Bianca
*
*/
public class Element
{
/**
* The {@link EntryType} of this element.
*/
private EntryType type;
/**
* The value or count of this element.
*/
private String value;
public Element(EntryType type, String value)
{
this.type = type;
this.value = value;
}
/**
* Gets the {@link EntryType} of this element.
*
* @return The described value.
*/
public EntryType getType()
{
return this.type;
}
/**
* Get the value or count of this element.
*
* @return The described value.
*/
public String getValue()
{
return this.value;
}
}