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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to