All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.notice.data.enums.NotificationState Maven / Gradle / Ivy

package com.haoxuer.discover.notice.data.enums;

public enum NotificationState {
  unread, read;
  
  @Override
  public String toString() {
    if (name().equals("read")) {
      return "已读";
    } else if (name().equals("unread")) {
      return "未读";
    }
    return super.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy