Enum ArtisticDesignSubtypeEnum
- java.lang.Object
-
- java.lang.Enum<ArtisticDesignSubtypeEnum>
-
- no.unit.nva.model.instancetypes.artistic.ArtisticDesignSubtypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ArtisticDesignSubtypeEnum>
public enum ArtisticDesignSubtypeEnum extends java.lang.Enum<ArtisticDesignSubtypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOTHING_DESIGNEXHIBITIONGRAPHIC_DESIGNILLUSTRATIONINTERACTION_DESIGNINTERIOR_DESIGNLIGHT_DESIGNOTHERPRODUCT_DESIGNSERVICE_DESIGNWEB_DESIGN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetType()static ArtisticDesignSubtypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ArtisticDesignSubtypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOTHING_DESIGN
public static final ArtisticDesignSubtypeEnum CLOTHING_DESIGN
-
EXHIBITION
public static final ArtisticDesignSubtypeEnum EXHIBITION
-
GRAPHIC_DESIGN
public static final ArtisticDesignSubtypeEnum GRAPHIC_DESIGN
-
ILLUSTRATION
public static final ArtisticDesignSubtypeEnum ILLUSTRATION
-
INTERACTION_DESIGN
public static final ArtisticDesignSubtypeEnum INTERACTION_DESIGN
-
INTERIOR_DESIGN
public static final ArtisticDesignSubtypeEnum INTERIOR_DESIGN
-
LIGHT_DESIGN
public static final ArtisticDesignSubtypeEnum LIGHT_DESIGN
-
OTHER
public static final ArtisticDesignSubtypeEnum OTHER
-
PRODUCT_DESIGN
public static final ArtisticDesignSubtypeEnum PRODUCT_DESIGN
-
SERVICE_DESIGN
public static final ArtisticDesignSubtypeEnum SERVICE_DESIGN
-
WEB_DESIGN
public static final ArtisticDesignSubtypeEnum WEB_DESIGN
-
-
Method Detail
-
values
public static ArtisticDesignSubtypeEnum[] 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 (ArtisticDesignSubtypeEnum c : ArtisticDesignSubtypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArtisticDesignSubtypeEnum 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 namejava.lang.NullPointerException- if the argument is null
-
getType
public java.lang.String getType()
-
-