uk.co.caprica.vlcj.binding.internal
Enum libvlc_meta_t
java.lang.Object
java.lang.Enum<libvlc_meta_t>
uk.co.caprica.vlcj.binding.internal.libvlc_meta_t
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<libvlc_meta_t>
public enum libvlc_meta_t
- extends java.lang.Enum<libvlc_meta_t>
Method Summary |
int |
intValue()
|
static libvlc_meta_t |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static libvlc_meta_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
libvlc_meta_Title
public static final libvlc_meta_t libvlc_meta_Title
libvlc_meta_Artist
public static final libvlc_meta_t libvlc_meta_Artist
libvlc_meta_Genre
public static final libvlc_meta_t libvlc_meta_Genre
libvlc_meta_Copyright
public static final libvlc_meta_t libvlc_meta_Copyright
libvlc_meta_Album
public static final libvlc_meta_t libvlc_meta_Album
libvlc_meta_TrackNumber
public static final libvlc_meta_t libvlc_meta_TrackNumber
libvlc_meta_Description
public static final libvlc_meta_t libvlc_meta_Description
libvlc_meta_Rating
public static final libvlc_meta_t libvlc_meta_Rating
libvlc_meta_Date
public static final libvlc_meta_t libvlc_meta_Date
libvlc_meta_Setting
public static final libvlc_meta_t libvlc_meta_Setting
libvlc_meta_URL
public static final libvlc_meta_t libvlc_meta_URL
libvlc_meta_Language
public static final libvlc_meta_t libvlc_meta_Language
libvlc_meta_NowPlaying
public static final libvlc_meta_t libvlc_meta_NowPlaying
libvlc_meta_Publisher
public static final libvlc_meta_t libvlc_meta_Publisher
libvlc_meta_EncodedBy
public static final libvlc_meta_t libvlc_meta_EncodedBy
libvlc_meta_ArtworkURL
public static final libvlc_meta_t libvlc_meta_ArtworkURL
libvlc_meta_TrackID
public static final libvlc_meta_t libvlc_meta_TrackID
values
public static libvlc_meta_t[] 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 (libvlc_meta_t c : libvlc_meta_t.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static libvlc_meta_t 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 name
java.lang.NullPointerException
- if the argument is null
intValue
public int intValue()