You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
433 B

package com.github.jreddit.parser.entity;
/**
* Deal with different types of messages
*
* @author Raul Rene Lepsa
*/
public enum MessageType {
INBOX("inbox"), SENT("sent"), UNREAD("unread");
private String value;
MessageType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}