Class CompatibilitySupport
- java.lang.Object
-
- com.github.crashdemons.playerheads.compatibility.CompatibilitySupport
-
public final class CompatibilitySupport extends Object
Class that holds supported compatibility implementations in this release. By default, before shading, this is mostly empty and it is up to the downstream projects to add support. Downstream projects that shade the package into their project should exclude or replace this class as needed.- Author:
- crashdemons (crashenator at gmail.com)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isFinalized()
Specifies whether compatibility support has been added by a downstream project yet.
-
-
-
Field Detail
-
VERSIONS
public static final HashMap<String,Integer[][]> VERSIONS
Map containing the supported server implementations and their supported versions. This list must be in order of descending version numbers for each type. Types do not have to be in any specific order. For example: VERSIONS.put("craftbukkit", new Integer[][]{ {1,16},{1,13},{1,8} });
-
-