Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
raynigon committed Nov 17, 2020
1 parent 2a43dbf commit a8b7f94
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
*
* @author otaviojava
* @author werner
* @param <Q> QuantityType
* @version 1.1, July 2, 2019
* @since 1.0
*/
Expand Down Expand Up @@ -84,7 +83,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>>
<T extends Quantity<T>> ComparableQuantity<T> asType(Class<T> type) throws ClassCastException;

/**
* Compares two instances of {@link Quantity <Q>}. Conversion of unit can happen if necessary
* Compares two instances of {@link Quantity}. Conversion of unit can happen if necessary
*
* @param that the {@code quantity<Q>} to be compared with this instance.
* @return {@code true} if {@code that > this}.
Expand All @@ -93,7 +92,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>>
boolean isGreaterThan(Quantity<Q> that);

/**
* Compares two instances of {@link Quantity <Q>}, doing the conversion of unit if necessary.
* Compares two instances of {@link Quantity}, doing the conversion of unit if necessary.
*
* @param that the {@code quantity<Q>} to be compared with this instance.
* @return {@code true} if {@code that >= this}.
Expand All @@ -102,7 +101,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>>
boolean isGreaterThanOrEqualTo(Quantity<Q> that);

/**
* Compares two instances of {@link Quantity <Q>}, doing the conversion of unit if necessary.
* Compares two instances of {@link Quantity}, doing the conversion of unit if necessary.
*
* @param that the {@code quantity<Q>} to be compared with this instance.
* @return {@code true} if {@code that < this}.
Expand All @@ -111,7 +110,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>>
boolean isLessThan(Quantity<Q> that);

/**
* Compares two instances of {@link Quantity <Q>}, doing the conversion of unit if necessary.
* Compares two instances of {@link Quantity}, doing the conversion of unit if necessary.
*
* @param that the {@code quantity<Q>} to be compared with this instance.
* @return {@code true} if {@code that < this}.
Expand All @@ -120,7 +119,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>>
boolean isLessThanOrEqualTo(Quantity<Q> that);

/**
* Compares two instances of {@code Quantity <Q>}, doing the conversion of unit if necessary.
* Compares two instances of {@code Quantity}, doing the conversion of unit if necessary.
*
* @param that the {@code quantity<Q>} to be compared with this instance.
* @return {@code true} if {@code that < this}.
Expand Down

0 comments on commit a8b7f94

Please sign in to comment.