Package me.playernguyen.opteco.bStats
Class Metrics
java.lang.Object
me.playernguyen.opteco.OptEcoImplementation
me.playernguyen.opteco.bStats.Metrics
public class Metrics extends OptEcoImplementation
bStats collects some data for plugin authors.
Check out https://bStats.org/ to learn more about bStats!
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Metrics.AdvancedBarChart
Represents a custom advanced bar chart.static class
Metrics.AdvancedPie
Represents a custom advanced pie.static class
Metrics.CustomChart
Represents a custom chart.static class
Metrics.DrilldownPie
Represents a custom drilldown pie.static class
Metrics.MultiLineChart
Represents a custom multi line chart.static class
Metrics.SimpleBarChart
Represents a custom simple bar chart.static class
Metrics.SimplePie
Represents a custom simple pie.static class
Metrics.SingleLineChart
Represents a custom single line chart. -
Field Summary
Fields Modifier and Type Field Description static int
B_STATS_VERSION
-
Constructor Summary
Constructors Constructor Description Metrics(org.bukkit.plugin.Plugin plugin, int pluginId)
Class constructor. -
Method Summary
Modifier and Type Method Description void
addCustomChart(Metrics.CustomChart chart)
Adds a custom chart.com.google.gson.JsonObject
getPluginData()
Gets the plugin specific data.boolean
isEnabled()
Checks if bStats is enabled.Methods inherited from class me.playernguyen.opteco.OptEcoImplementation
getAccountDatabase, getAccountManager, getConfigurationLoader, getDebugger, getLanguageLoader, getLogger, getPlugin, getStorageType, getTransactionManager
-
Field Details
-
B_STATS_VERSION
public static final int B_STATS_VERSION- See Also:
- Constant Field Values
-
-
Constructor Details
-
Metrics
public Metrics(org.bukkit.plugin.Plugin plugin, int pluginId)Class constructor.- Parameters:
plugin
- The plugin which stats should be submitted.pluginId
- The id of the plugin. It can be found at What is my plugin id?
-
-
Method Details
-
isEnabled
public boolean isEnabled()Checks if bStats is enabled.- Returns:
- Whether bStats is enabled or not.
-
addCustomChart
Adds a custom chart.- Parameters:
chart
- The chart to add.
-
getPluginData
public com.google.gson.JsonObject getPluginData()Gets the plugin specific data. This method is called using Reflection.- Returns:
- The plugin specific data.
-