< prev index next >
src/java.desktop/share/classes/javax/swing/SortOrder.java
Print this page
@@ -31,24 +31,24 @@
* @since 1.6
*/
public enum SortOrder {
/**
* Enumeration value indicating the items are sorted in increasing order.
- * For example, the set <code>1, 4, 0</code> sorted in
- * <code>ASCENDING</code> order is <code>0, 1, 4</code>.
+ * For example, the set {@code 1, 4, 0} sorted in
+ * {@code ASCENDING} order is {@code 0, 1, 4}.
*/
ASCENDING,
/**
* Enumeration value indicating the items are sorted in decreasing order.
- * For example, the set <code>1, 4, 0</code> sorted in
- * <code>DESCENDING</code> order is <code>4, 1, 0</code>.
+ * For example, the set {@code 1, 4, 0} sorted in
+ * {@code DESCENDING} order is {@code 4, 1, 0}.
*/
DESCENDING,
/**
* Enumeration value indicating the items are unordered.
- * For example, the set <code>1, 4, 0</code> in
- * <code>UNSORTED</code> order is <code>1, 4, 0</code>.
+ * For example, the set {@code 1, 4, 0} in
+ * {@code UNSORTED} order is {@code 1, 4, 0}.
*/
UNSORTED
}
< prev index next >