deadbeef.SupTools
Enum Core.MoveModeY

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

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

Enumeration of modes for moving of captions in Y direction


Enum Constant Summary
INSIDE
          move inside bounds
KEEP
          keep position - don't move
OUTSIDE
          move outside bounds
 
Method Summary
static Core.MoveModeY valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Core.MoveModeY[] 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

KEEP

public static final Core.MoveModeY KEEP
keep position - don't move


INSIDE

public static final Core.MoveModeY INSIDE
move inside bounds


OUTSIDE

public static final Core.MoveModeY OUTSIDE
move outside bounds

Method Detail

values

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