Enum LiteraryArtsAudioVisualSubtype
- java.lang.Object
-
- java.lang.Enum<LiteraryArtsAudioVisualSubtype>
-
- no.unit.nva.model.instancetypes.artistic.literaryarts.manifestation.LiteraryArtsAudioVisualSubtype
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LiteraryArtsAudioVisualSubtype>
public enum LiteraryArtsAudioVisualSubtype extends java.lang.Enum<LiteraryArtsAudioVisualSubtype>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIOBOOKOTHERPODCASTRADIO_PLAYSHORT_FILM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()LiteraryArtsAudioVisualSubtypelookup(java.lang.String candidate)static LiteraryArtsAudioVisualSubtypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LiteraryArtsAudioVisualSubtype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIOBOOK
public static final LiteraryArtsAudioVisualSubtype AUDIOBOOK
-
RADIO_PLAY
public static final LiteraryArtsAudioVisualSubtype RADIO_PLAY
-
SHORT_FILM
public static final LiteraryArtsAudioVisualSubtype SHORT_FILM
-
PODCAST
public static final LiteraryArtsAudioVisualSubtype PODCAST
-
OTHER
public static final LiteraryArtsAudioVisualSubtype OTHER
-
-
Method Detail
-
values
public static LiteraryArtsAudioVisualSubtype[] 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 (LiteraryArtsAudioVisualSubtype c : LiteraryArtsAudioVisualSubtype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LiteraryArtsAudioVisualSubtype 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
-
getName
public java.lang.String getName()
-
lookup
public LiteraryArtsAudioVisualSubtype lookup(java.lang.String candidate)
-
-