In my code I have the following enum
public ennum BuySell {
buy('B', true, RoundingMode.DOWN, 1),
sell('S', false, RoundingMode.UP, -1 buy);
BuySell(char c, boolean isBuy, RoundingMode roundingMode, int mult) {
this.aChar = c;
this.isBuy = isBuy;
this.isSell = !isBuy;
this.roundingMode = roundingMode;
this.mult = mult;
}
BuySell(char c, boolean isBuy, RoundingMode roundingMode, int mult, BuySell oppositeAction) {
this(c, isBuy, roundingMode, mult);
this.opposite = oppositeAction;
oppositeAction.opposite = this;
}
}
I save objects containing this enum through DB40 and when my system loads it loads those objects.
what I see is that the loaded objects contain ButSell with different object id .
Here you go :
you can see that one selling = 9570 and the other is 9576
My quoestion is - how does another instance of this enum is created ? isnt it static ?
How can I avoid it?
Thanks.
You can get multiple instances if
Unsafe
to create an instance of an Enum class.Further investigation would be required to determine how to avoid this. e.g. Are you setting the class loader. Is the ClassLoader for the two object different? Does the library use Unsafe.allocateInstance ?
BTW: I would use BUY and SELL rather than buy and sell for enum constants.