We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sample of code below:
public enum DeviceDataExpressionEnum { /** * temperature */ SENSIRION("2101", new ImmutableMap.Builder<>() .put("temperature", "#temperature#") .put("humidity", "#humidity#").build()); private String deviceType; private Map<String, String> keyWords; DeviceDataExpressionEnum(String s, Object put) { this.deviceType = s; this.keyWords = (Map<String, String>) put; } public String getDeviceType() { return deviceType; } public void setDeviceType(String deviceType) { this.deviceType = deviceType; } public Map<String, String> getKeyWords() { return keyWords; } public void setKeyWords(Map<String, String> keyWords) { this.keyWords = keyWords; } } ```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sample of code below:
The text was updated successfully, but these errors were encountered: