public static enum ObjectNumber.ObjectNumberType extends Enum<ObjectNumber.ObjectNumberType>
ObjectNumber
was created.Enum Constant and Description |
---|
ANY_OBJECT_NUMBER
The
ObjectNumber was created based on an arbitrary String. |
COST_CENTER_OBJECT_NUMBER
The
ObjectNumber was created based on a CostCenter and a ControllingArea . |
INTERNAL_ORDER_OBJECT_NUMBER
The
ObjectNumber was created based on an InternalOrder . |
PROFIT_CENTER_OBJECT_NUMBER
The
ObjectNumber was created based on a ProfitCenter and a ControllingArea . |
Modifier and Type | Method and Description |
---|---|
static ObjectNumber.ObjectNumberType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectNumber.ObjectNumberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectNumber.ObjectNumberType ANY_OBJECT_NUMBER
ObjectNumber
was created based on an arbitrary String.public static final ObjectNumber.ObjectNumberType COST_CENTER_OBJECT_NUMBER
ObjectNumber
was created based on a CostCenter
and a ControllingArea
.public static final ObjectNumber.ObjectNumberType PROFIT_CENTER_OBJECT_NUMBER
ObjectNumber
was created based on a ProfitCenter
and a ControllingArea
.public static final ObjectNumber.ObjectNumberType INTERNAL_ORDER_OBJECT_NUMBER
ObjectNumber
was created based on an InternalOrder
.public static ObjectNumber.ObjectNumberType[] values()
for (ObjectNumber.ObjectNumberType c : ObjectNumber.ObjectNumberType.values()) System.out.println(c);
public static ObjectNumber.ObjectNumberType 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 nullCopyright © 2018 SAP SE. All rights reserved.