[Android] 枚举

public static enum Align {
CENTER,
LEFT,
RIGHT;

private Align() {
}
}
原文地址:https://www.cnblogs.com/fphuang/p/9051547.html