deadbeef.SupTools
Enum Core.OutputMode

java.lang.Object
  extended by java.lang.Enum<Core.OutputMode>
      extended by deadbeef.SupTools.Core.OutputMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Core.OutputMode>
Enclosing class:
Core

public static enum Core.OutputMode
extends java.lang.Enum<Core.OutputMode>

Enumeration of output modes


Enum Constant Summary
BDSUP
          Blu-Ray SUP stream
SUPIFO
          DVD SUP/IFO stream
VOBSUB
          DVD SUB/IDX (VobSub) stream
XML
          Sony BDN XML (+PNGs)
 
Method Summary
static Core.OutputMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Core.OutputMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VOBSUB

public static final Core.OutputMode VOBSUB
DVD SUB/IDX (VobSub) stream


SUPIFO

public static final Core.OutputMode SUPIFO
DVD SUP/IFO stream


BDSUP

public static final Core.OutputMode BDSUP
Blu-Ray SUP stream


XML

public static final Core.OutputMode XML
Sony BDN XML (+PNGs)

Method Detail

values

public static Core.OutputMode[] 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 (Core.OutputMode c : Core.OutputMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Core.OutputMode 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