deadbeef.SupTools
Enum Core.InputMode

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

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

Enumeration of input modes


Enum Constant Summary
BDSUP
          Blu-Ray SUP stream
HDDVDSUP
          HD-DVD SUP stream
SUPIFO
          DVD SUP/IFO stream
VOBSUB
          DVD SUB/IDX (VobSub) stream
XML
          Sony BDN XML (+PNGs)
 
Method Summary
static Core.InputMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Core.InputMode[] 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.InputMode VOBSUB
DVD SUB/IDX (VobSub) stream


BDSUP

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


XML

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


HDDVDSUP

public static final Core.InputMode HDDVDSUP
HD-DVD SUP stream


SUPIFO

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

Method Detail

values

public static Core.InputMode[] 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.InputMode c : Core.InputMode.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.InputMode 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