summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/DyeColor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/DyeColor.java')
-rw-r--r--src/main/java/org/bukkit/DyeColor.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/main/java/org/bukkit/DyeColor.java b/src/main/java/org/bukkit/DyeColor.java
index 2c2f3ca6..214806e6 100644
--- a/src/main/java/org/bukkit/DyeColor.java
+++ b/src/main/java/org/bukkit/DyeColor.java
@@ -10,67 +10,67 @@ import com.google.common.collect.ImmutableMap;
public enum DyeColor {
/**
- * Represents white dye
+ * Represents white dye.
*/
WHITE(0x0, 0xF, Color.WHITE, Color.fromRGB(0xF0F0F0)),
/**
- * Represents orange dye
+ * Represents orange dye.
*/
ORANGE(0x1, 0xE, Color.fromRGB(0xD87F33), Color.fromRGB(0xEB8844)),
/**
- * Represents magenta dye
+ * Represents magenta dye.
*/
MAGENTA(0x2, 0xD, Color.fromRGB(0xB24CD8), Color.fromRGB(0xC354CD)),
/**
- * Represents light blue dye
+ * Represents light blue dye.
*/
LIGHT_BLUE(0x3, 0xC, Color.fromRGB(0x6699D8), Color.fromRGB(0x6689D3)),
/**
- * Represents yellow dye
+ * Represents yellow dye.
*/
YELLOW(0x4, 0xB, Color.fromRGB(0xE5E533), Color.fromRGB(0xDECF2A)),
/**
- * Represents lime dye
+ * Represents lime dye.
*/
LIME(0x5, 0xA, Color.fromRGB(0x7FCC19), Color.fromRGB(0x41CD34)),
/**
- * Represents pink dye
+ * Represents pink dye.
*/
PINK(0x6, 0x9, Color.fromRGB(0xF27FA5), Color.fromRGB(0xD88198)),
/**
- * Represents gray dye
+ * Represents gray dye.
*/
GRAY(0x7, 0x8, Color.fromRGB(0x4C4C4C), Color.fromRGB(0x434343)),
/**
- * Represents silver dye
+ * Represents silver dye.
*/
SILVER(0x8, 0x7, Color.fromRGB(0x999999), Color.fromRGB(0xABABAB)),
/**
- * Represents cyan dye
+ * Represents cyan dye.
*/
CYAN(0x9, 0x6, Color.fromRGB(0x4C7F99), Color.fromRGB(0x287697)),
/**
- * Represents purple dye
+ * Represents purple dye.
*/
PURPLE(0xA, 0x5, Color.fromRGB(0x7F3FB2), Color.fromRGB(0x7B2FBE)),
/**
- * Represents blue dye
+ * Represents blue dye.
*/
BLUE(0xB, 0x4, Color.fromRGB(0x334CB2), Color.fromRGB(0x253192)),
/**
- * Represents brown dye
+ * Represents brown dye.
*/
BROWN(0xC, 0x3, Color.fromRGB(0x664C33), Color.fromRGB(0x51301A)),
/**
- * Represents green dye
+ * Represents green dye.
*/
GREEN(0xD, 0x2, Color.fromRGB(0x667F33), Color.fromRGB(0x3B511A)),
/**
- * Represents red dye
+ * Represents red dye.
*/
RED(0xE, 0x1, Color.fromRGB(0x993333), Color.fromRGB(0xB3312C)),
/**
- * Represents black dye
+ * Represents black dye.
*/
BLACK(0xF, 0x0, Color.fromRGB(0x191919), Color.fromRGB(0x1E1B1B));
@@ -129,7 +129,7 @@ public enum DyeColor {
}
/**
- * Gets the color that this dye represents
+ * Gets the color that this dye represents.
*
* @return The {@link Color} that this dye represents
*/
@@ -138,7 +138,7 @@ public enum DyeColor {
}
/**
- * Gets the firework color that this dye represents
+ * Gets the firework color that this dye represents.
*
* @return The {@link Color} that this dye represents
*/
@@ -199,7 +199,7 @@ public enum DyeColor {
}
/**
- * Gets the DyeColor with the given color value
+ * Gets the DyeColor with the given color value.
*
* @param color Color value to get the dye by
* @return The {@link DyeColor} representing the given value, or null if
@@ -210,7 +210,7 @@ public enum DyeColor {
}
/**
- * Gets the DyeColor with the given firework color value
+ * Gets the DyeColor with the given firework color value.
*
* @param color Color value to get dye by
* @return The {@link DyeColor} representing the given value, or null if