package com.example.greenwatch.sensors.MicrofonHelperClasses; public class Verarbeitungsergebnis { private String status; private short maxAmp; private float db; // public Verarbeitungsergebnis(String status, short maxAmp, int db) { this.status = status; this.maxAmp = maxAmp; this.db = db; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public short getMaxAmp() { return maxAmp; } public void setMaxAmp(short maxAmp) { this.maxAmp = maxAmp; } public float getDB() { return db; } public void setDB(float db) { this.db = db; } }