azure-core: Addressing checkstyle in ExpandableStringEnum

This commit is contained in:
Anu Thomas Chandy 2021-03-03 17:11:22 -08:00
Родитель ba9bd261cd
Коммит 94687de261
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -44,9 +44,9 @@ public abstract class ExpandableStringEnum<T extends ExpandableStringEnum<T>> {
/**
* Creates an instance of the specific expandable string enum from a String.
*
* @param name The value to create the instance from.
* @param name The value to create the instance from.
* @param clazz The class of the expandable string enum.
* @param <T> The class of the expandable string enum.
* @param <T> The class of the expandable string enum.
* @return The expandable string enum instance.
*/
@SuppressWarnings("unchecked")
@ -75,7 +75,7 @@ public abstract class ExpandableStringEnum<T extends ExpandableStringEnum<T>> {
* Gets a collection of all known values to an expandable string enum type.
*
* @param clazz The class of the expandable string enum.
* @param <T> The class of the expandable string enum.
* @param <T> The class of the expandable string enum.
* @return A collection of all known values for the given {@code clazz}.
*/
@SuppressWarnings("unchecked")