Item 36. EnumSet
class Text {
public static final int STYLE_BOLD = 1 << 0; // 0001
public static final int STYLE_ITALIC = 1 << 1; // 0010
public static final int STYLE_UNDERLINE = 1 << 2; // 0100
public static final int STYLE_STRIKETHROUGH = 1 << 3; // 1000
public void applyStyles(int styles) {
// ...
}
}
class Main {
public static void main(String[] args) {
Text text = new Text();
text.applyStyles(STYLE_BOLD | STYLE_ITALIC); // 0011
}
}EnumSet
Last updated