Enum-Klasse ContentClassification

java.lang.Object
java.lang.Enum<ContentClassification>
com.github.twitch4j.eventsub.domain.ContentClassification
Alle implementierten Schnittstellen:
Serializable, Comparable<ContentClassification>, Constable

public enum ContentClassification extends Enum<ContentClassification>
Content classification tags that indicate that a stream may not be suitable for certain viewers.
Siehe auch:
  • Verschachtelte Klassen - Übersicht

    Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    Excessive tobacco glorification or promotion, any marijuana consumption/use, legal drug and alcohol induced intoxication, discussions of illegal drugs.
    Participating in online or in-person gambling, poker or fantasy sports, that involve the exchange of real money.
    Games that are rated Mature or less suitable for a younger audience.
    Prolonged, and repeated use of obscenities, profanities, and vulgarities, especially as a regular part of speech.
    Content that focuses on sexualized physical attributes and activities, sexual topics, or experiences.
    The channel has a content classification label that is unrecognized by the library; Please file an issue on our GitHub repository.
    Simulations and/or depictions of realistic violence, gore, extreme injury, or death.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
     
     
    Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück.
    Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • DRUGS

      public static final ContentClassification DRUGS
      Excessive tobacco glorification or promotion, any marijuana consumption/use, legal drug and alcohol induced intoxication, discussions of illegal drugs.
    • GAMBLING

      public static final ContentClassification GAMBLING
      Participating in online or in-person gambling, poker or fantasy sports, that involve the exchange of real money.
    • MATURE_GAME

      public static final ContentClassification MATURE_GAME
      Games that are rated Mature or less suitable for a younger audience.

      This tag is automatically applied based on the stream category.

    • PROFANITY

      public static final ContentClassification PROFANITY
      Prolonged, and repeated use of obscenities, profanities, and vulgarities, especially as a regular part of speech.
    • SEXUAL

      public static final ContentClassification SEXUAL
      Content that focuses on sexualized physical attributes and activities, sexual topics, or experiences.
    • VIOLENCE

      public static final ContentClassification VIOLENCE
      Simulations and/or depictions of realistic violence, gore, extreme injury, or death.
    • UNKNOWN

      public static final ContentClassification UNKNOWN
      The channel has a content classification label that is unrecognized by the library; Please file an issue on our GitHub repository.
  • Methodendetails

    • values

      public static ContentClassification[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static ContentClassification valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Enum<ContentClassification>
    • parse