Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvanek committed Dec 7, 2024
1 parent afcf90c commit e0c3253
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public static UnusedIndex of(@Nonnull final String tableName,
* @param tableName the name of the table associated with the index, must be non-null
* @param indexName the name of the index, must be non-null
* @return a new {@code UnusedIndex} instance
* @since 0.14.3
*/
@Nonnull
public static UnusedIndex of(@Nonnull final String tableName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,17 @@

import javax.annotation.Nonnull;

/**
* Represents an entity that is aware of its parameter name.
*/
@SuppressWarnings("WeakerAccess")
public interface ParamNameAware {

/**
* Retrieves the name of the parameter.
*
* @return the name of the parameter, never {@code null}
*/
@Nonnull
String getName();
}

0 comments on commit e0c3253

Please sign in to comment.