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

com.github.shynixn.petblocks.api.entities.Movement Maven / Gradle / Ivy

package com.github.shynixn.petblocks.api.entities;

/**
 * Created by Shynixn
 */
public enum Movement {
    CRAWLING,
    HOPPING;

    public static Movement getMovementFromName(String name) {
        for (final Movement type : Movement.values()) {
            if (type.name().equalsIgnoreCase(name))
                return type;
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy