org.jclouds.openstack.nova.v2_0.domain
Enum Console.Type

java.lang.Object
  extended by java.lang.Enum<Console.Type>
      extended by org.jclouds.openstack.nova.v2_0.domain.Console.Type
All Implemented Interfaces:
Serializable, Comparable<Console.Type>
Enclosing class:
Console

public static enum Console.Type
extends Enum<Console.Type>


Enum Constant Summary
NOVNC
           
RDP_HTML5
           
SPICE_HTML5
           
UNRECOGNIZED
           
XVPVNC
           
 
Method Summary
static Console.Type fromValue(String type)
          Used from jclouds builtin deserializer.
 String toString()
           
 String type()
           
static Console.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Console.Type[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOVNC

public static final Console.Type NOVNC

XVPVNC

public static final Console.Type XVPVNC

SPICE_HTML5

public static final Console.Type SPICE_HTML5

RDP_HTML5

public static final Console.Type RDP_HTML5

UNRECOGNIZED

public static final Console.Type UNRECOGNIZED
Method Detail

values

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

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

valueOf

public static Console.Type valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

type

public String type()

fromValue

public static Console.Type fromValue(String type)
Used from jclouds builtin deserializer.


toString

public String toString()
Overrides:
toString in class Enum<Console.Type>


Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.