Skip to content

Commit

Permalink
Merge branch 'develop' into feature/iris/AddIngestionStateUI
Browse files Browse the repository at this point in the history
  • Loading branch information
bassner authored Nov 29, 2024
2 parents 2360a1b + 04ba6b9 commit 4fab77f
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,12 @@ public String value() {
}

/**
* Returns the enum constant of this type with the specified name.
* Creates a {@link Kind} instance from a given string value.
* <p>
*
* @param value the name of the enum constant to be returned.
* @return the enum constant with the specified name
* @param value the string representation of the {@link Kind}
* @return the matching {@link Kind} instance
* @throws IllegalArgumentException if the provided value does not correspond to any defined {@link Kind}
*/
@JsonCreator
public static Kind fromValue(String value) {
Expand All @@ -127,7 +129,6 @@ public static Kind fromValue(String value) {
return constant;
}
}

}

/**
Expand Down Expand Up @@ -162,10 +163,11 @@ public String value() {
}

/**
* Returns the enum constant of this type with the specified name.
* Creates a {@link Level} instance from a given string value.
*
* @param value the name of the enum constant to be returned.
* @return the enum constant with the specified name
* @param value the string representation of the {@link Level}
* @return the matching {@link Level} instance
* @throws IllegalArgumentException if the provided value does not correspond to any defined {@link Level}
*/
@JsonCreator
public static Level fromValue(String value) {
Expand Down

0 comments on commit 4fab77f

Please sign in to comment.