From 27bf571d6413c3cc6a5d664b5bddd38d21d7b1cd Mon Sep 17 00:00:00 2001 From: EVE Date: Mon, 13 Mar 2017 16:42:21 -0400 Subject: Formatting --- .../main/java/bjc/utils/funcutils/EnumUtils.java | 23 +++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/EnumUtils.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/EnumUtils.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/EnumUtils.java index 9be6080..82a29a2 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/EnumUtils.java +++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/EnumUtils.java @@ -17,18 +17,18 @@ public class EnumUtils { * Do an action for a random number of enum values * * @param - * The type of the enum + * The type of the enum * @param clasz - * The enum class + * The enum class * @param nValues - * The number of values to execute the action on + * The number of values to execute the action on * @param action - * The action to perform on random values + * The action to perform on random values * @param rnd - * The source of randomness to use + * The source of randomness to use */ - public static > void doForValues(Class clasz, - int nValues, Consumer action, Random rnd) { + public static > void doForValues(Class clasz, int nValues, Consumer action, + Random rnd) { E[] enumValues = clasz.getEnumConstants(); IList valueList = new FunctionalList<>(enumValues); @@ -48,15 +48,14 @@ public class EnumUtils { * Get a random value from an enum * * @param - * The type of the enum + * The type of the enum * @param clasz - * The class of the enum + * The class of the enum * @param rnd - * The random source to use + * The random source to use * @return A random value from the specified enum */ - public static > E getRandomValue(Class clasz, - Random rnd) { + public static > E getRandomValue(Class clasz, Random rnd) { E[] enumValues = clasz.getEnumConstants(); return new FunctionalList<>(enumValues).randItem(rnd::nextInt); -- cgit v1.2.3