com.jamasoftware.contour.domain
Enum LicenseType

java.lang.Object
  extended by java.lang.Enum<LicenseType>
      extended by com.jamasoftware.contour.domain.LicenseType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LicenseType>

public enum LicenseType
extends java.lang.Enum<LicenseType>


Enum Constant Summary
COMMERCIAL
           
EVALUATION
           
NON_PRODUCTION
           
 
Method Summary
 boolean equals(java.lang.String code)
           
 java.lang.String getCode()
           
 java.lang.String getDisplay()
           
 java.lang.Integer getId()
           
static LicenseType getLicenseTypeByCode(java.lang.String code)
           
static LicenseType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LicenseType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EVALUATION

public static final LicenseType EVALUATION

NON_PRODUCTION

public static final LicenseType NON_PRODUCTION

COMMERCIAL

public static final LicenseType COMMERCIAL
Method Detail

values

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

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

valueOf

public static LicenseType 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

getId

public java.lang.Integer getId()

getCode

public java.lang.String getCode()

getDisplay

public java.lang.String getDisplay()

equals

public boolean equals(java.lang.String code)

getLicenseTypeByCode

public static LicenseType getLicenseTypeByCode(java.lang.String code)


Copyright (c) 2010 Jama Software, Inc. All Rights Reserved.