Hi.

So, do you prefer:
---
public enum Order {
    INCREASING,
    DECREASING
}
---
or
---
public enum OrderDirection {
    INCREASING,
    DECREASING
}
---
?

But are you sure that there won't be anything useful that would justify
having an enum "Direction" inside an enclosing "Order" (as it is now)?


Gilles

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to