summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9831039)
raw | patch | inline | side by side (parent: 9831039)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 2 Aug 2009 10:16:42 +0000 (12:16 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 2 Aug 2009 10:16:42 +0000 (12:16 +0200) |
bindings/java/org/collectd/api/DataSource.java | patch | blob | history |
diff --git a/bindings/java/org/collectd/api/DataSource.java b/bindings/java/org/collectd/api/DataSource.java
index bfe8e2d066cfcddbd4aeb09809d87775fa42bc43..ba132d3dde002b5465a6b391f0359541c240c9e8 100644 (file)
* Java representation of collectd/src/plugin.h:data_source_t structure.
*/
public class DataSource {
- public static final int TYPE_COUNTER = 0;
- public static final int TYPE_GAUGE = 1;
+ public static final int TYPE_COUNTER = 0;
+ public static final int TYPE_GAUGE = 1;
+ public static final int TYPE_DERIVE = 2;
+ public static final int TYPE_ABSOLUTE = 3;
- static final String COUNTER = "COUNTER";
- static final String GAUGE = "GAUGE";
+ static final String COUNTER = "COUNTER";
+ static final String GAUGE = "GAUGE";
+ static final String DERIVE = "DERIVE";
+ static final String ABSOLUTE = "ABSOLUTE";
static final String NAN = "U";
- private static final String[] TYPES = { COUNTER, GAUGE };
+ private static final String[] TYPES = { COUNTER, GAUGE, DERIVE, ABSOLUTE };
String _name;
int _type;
this._type = TYPE_GAUGE;
if (type == TYPE_COUNTER)
this._type = TYPE_COUNTER;
+ else if (type == TYPE_DERIVE)
+ this._type = TYPE_DERIVE;
+ else if (type == TYPE_ABSOLUTE)
+ this._type = TYPE_ABSOLUTE;
this._min = min;
this._max = max;
}