Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.relayr.model; //from ww w . j a v a2s . c o m import java.io.Serializable; /** * Key value object used to identify the type of information gathered by a given device. */ public class ReadingMeaning implements Serializable { private final String key; private final String value; public ReadingMeaning(String key, String value) { this.key = key; this.value = value; } public String getKey() { return key; } public String getValue() { return value; } @Override public String toString() { return "ReadingMeaning{" + "key='" + key + '\'' + ", value='" + value + '\'' + '}'; } }