ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/blocks/metalists/TheColoredLampColors.java

52 lines
1.3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TheColoredLampColors.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.blocks.metalists;
2015-06-28 21:28:58 +02:00
2015-12-30 22:02:15 +01:00
import de.ellpeck.actuallyadditions.util.StringUtil;
2015-11-09 18:05:52 +01:00
public enum TheColoredLampColors{
2015-06-28 21:28:58 +02:00
WHITE("White"),
ORANGE("Orange"),
MAGENTA("Magenta"),
LIGHT_BLUE("LightBlue"),
YELLOW("Yellow"),
LIME("Lime"),
PINK("Pink"),
GRAY("Gray"),
LIGHT_GRAY("LightGray"),
CYAN("Cyan"),
PURPLE("Purple"),
BLUE("Blue"),
BROWN("Brown"),
GREEN("Green"),
RED("Red"),
BLACK("Black");
public String name;
TheColoredLampColors(String name){
this.name = name;
}
public static TheColoredLampColors getColorFromDyeName(String color){
2015-06-29 20:55:06 +02:00
if(color.substring(0, 3).equals("dye")){
String actualName = color.substring(3);
for(int i = 0; i < values().length; i++){
2015-11-09 18:05:52 +01:00
if(StringUtil.equalsToLowerCase(values()[i].name, actualName)){
2015-10-03 10:16:18 +02:00
return values()[i];
}
2015-06-29 20:55:06 +02:00
}
2015-06-28 21:28:58 +02:00
}
return null;
}
}