public enum Mp4RatingValue extends java.lang.Enum<Mp4RatingValue>
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description |
private int |
id |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription()
This is the value of the fieldname that is actually used to write mp4
|
int |
getId()
Return id used in the file
|
static Mp4RatingValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mp4RatingValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mp4RatingValue CLEAN
public static final Mp4RatingValue EXPLICIT
public static Mp4RatingValue[] values()
for (Mp4RatingValue c : Mp4RatingValue.values()) System.out.println(c);
public static Mp4RatingValue valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getId()
public java.lang.String getDescription()
Copyright © 2005-2013 java.net. All Rights Reserved.