org.gcube.vremanagement.softwarerepository.softwarearchive.operations.impl
Enum GCUBEValidator.PACKAGETYPE

java.lang.Object
  extended by java.lang.Enum<GCUBEValidator.PACKAGETYPE>
      extended by org.gcube.vremanagement.softwarerepository.softwarearchive.operations.impl.GCUBEValidator.PACKAGETYPE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GCUBEValidator.PACKAGETYPE>
Enclosing class:
GCUBEValidator

public static enum GCUBEValidator.PACKAGETYPE
extends java.lang.Enum<GCUBEValidator.PACKAGETYPE>


Enum Constant Summary
APPLICATION
           
LIBRARY
           
MAIN
           
PLUGIN
           
SOFTWARE
           
 
Method Summary
static GCUBEValidator.PACKAGETYPE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GCUBEValidator.PACKAGETYPE[] 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

MAIN

public static final GCUBEValidator.PACKAGETYPE MAIN

SOFTWARE

public static final GCUBEValidator.PACKAGETYPE SOFTWARE

PLUGIN

public static final GCUBEValidator.PACKAGETYPE PLUGIN

LIBRARY

public static final GCUBEValidator.PACKAGETYPE LIBRARY

APPLICATION

public static final GCUBEValidator.PACKAGETYPE APPLICATION
Method Detail

values

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

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

valueOf

public static GCUBEValidator.PACKAGETYPE 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