Package org.javacord.api.entity.server
Enum ExplicitContentFilterLevel
- java.lang.Object
-
- java.lang.Enum<ExplicitContentFilterLevel>
-
- org.javacord.api.entity.server.ExplicitContentFilterLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExplicitContentFilterLevel>
public enum ExplicitContentFilterLevel extends java.lang.Enum<ExplicitContentFilterLevel>
This enum contains all explicit content filter levels.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_MEMBERSDISABLEDMEMBERS_WITHOUT_ROLESUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExplicitContentFilterLevelfromId(int id)Gets the explicit content filter level by its id.intgetId()Gets the id of the explicit content filter level.static ExplicitContentFilterLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExplicitContentFilterLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED
public static final ExplicitContentFilterLevel DISABLED
-
MEMBERS_WITHOUT_ROLES
public static final ExplicitContentFilterLevel MEMBERS_WITHOUT_ROLES
-
ALL_MEMBERS
public static final ExplicitContentFilterLevel ALL_MEMBERS
-
UNKNOWN
public static final ExplicitContentFilterLevel UNKNOWN
-
-
Method Detail
-
values
public static ExplicitContentFilterLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExplicitContentFilterLevel c : ExplicitContentFilterLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExplicitContentFilterLevel valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getId
public int getId()
Gets the id of the explicit content filter level.- Returns:
- The id of the explicit content filter level.
-
fromId
public static ExplicitContentFilterLevel fromId(int id)
Gets the explicit content filter level by its id.- Parameters:
id- The id of the explicit content filter level.- Returns:
- The explicit content filter level with the given id.
-
-