public enum ManufacturerStatus extends Enum<ManufacturerStatus>
Manufacturer.| Enum Constant and Description |
|---|
APPROVED
The manufacturer is approved, this is the default status.
|
DELETED
The manufacturer is deleted.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplayName() |
static ManufacturerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManufacturerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManufacturerStatus APPROVED
public static final ManufacturerStatus DELETED
public static ManufacturerStatus[] values()
for (ManufacturerStatus c : ManufacturerStatus.values()) System.out.println(c);
public static ManufacturerStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getDisplayName()
Copyright © 2025 European Spallation Source. All rights reserved.