All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cryptomorin.xseries.abstractions.Material Maven / Gradle / Ivy

There is a newer version: 12.1.0
Show newest version
package com.cryptomorin.xseries.abstractions;

import org.jetbrains.annotations.ApiStatus;

/**
 * Experimental class for XMaterial Bukkit+Forge abstraction.
 */
@ApiStatus.Experimental
interface Material {
    String name();

    boolean isSupported();

    default Material or(Material other) {
        return this.isSupported() ? this : other;
    }

    boolean equals(Object other);

    int hashCode();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy