Class 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)
    • 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} });
    • Method Detail

      • isFinalized

        public static boolean isFinalized()
        Specifies whether compatibility support has been added by a downstream project yet. If this is false, the project was not created properly.
        Returns:
        whether support has been added