public enum LongShort extends Enum<LongShort> implements NamedEnum
A long position is one where a financial instrument is bought with the expectation that its value will rise. A short position is the opposite where the expectation is that its value will fall, usually applied to the sale of a borrowed asset.
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLong()
Checks if the type is 'Long'.
|
boolean |
isShort()
Checks if the type is 'Short'.
|
static LongShort |
of(String name)
Obtains an instance from the specified name.
|
static LongShort |
ofLong(boolean isLong)
Converts a boolean "is long" flag to the enum value.
|
LongShort |
opposite()
Supplies the opposite of this value.
|
int |
sign()
Returns the sign, where 'Long' returns 1 and 'Short' returns -1.
|
String |
toString()
Returns the formatted name of the type.
|
static LongShort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LongShort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LongShort LONG
public static final LongShort SHORT
public static LongShort[] values()
for (LongShort c : LongShort.values()) System.out.println(c);
public static LongShort 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 static LongShort of(String name)
Parsing handles the mixed case form produced by toString() and
the upper and lower case variants of the enum constant name.
name - the name to parseIllegalArgumentException - if the name is not knownpublic static LongShort ofLong(boolean isLong)
isLong - the long flag, true for long, false for shortpublic boolean isLong()
public boolean isShort()
public int sign()
public LongShort opposite()
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.