forked from artiofix/artio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
170 changed files
with
185,842 additions
and
0 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
artio-ilink3-codecs/build/generated-src/iLinkBinary/AvgPxInd.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* Generated SBE (Simple Binary Encoding) message codec. */ | ||
package iLinkBinary; | ||
|
||
@SuppressWarnings("all") | ||
public enum AvgPxInd | ||
{ | ||
|
||
/** | ||
* No Average Pricing | ||
*/ | ||
NoAveragePricing((short)0), | ||
|
||
|
||
/** | ||
* Trade is part of an Average Price Group Identified by the AvgPxGrp ID | ||
*/ | ||
TradeispartofanAveragePriceGroupIdentifiedbytheAvgPxGrpID((short)1), | ||
|
||
|
||
/** | ||
* Trade is part of a Notional Value Average Price Group | ||
*/ | ||
TradeispartofaNotionalValueAveragePriceGroup((short)3), | ||
|
||
/** | ||
* To be used to represent not present or null. | ||
*/ | ||
NULL_VAL((short)255); | ||
|
||
private final short value; | ||
|
||
AvgPxInd(final short value) | ||
{ | ||
this.value = value; | ||
} | ||
|
||
/** | ||
* The raw encoded value in the Java type representation. | ||
* | ||
* @return the raw value encoded. | ||
*/ | ||
public short value() | ||
{ | ||
return value; | ||
} | ||
|
||
/** | ||
* Lookup the enum value representing the value. | ||
* | ||
* @param value encoded to be looked up. | ||
* @return the enum value representing the value. | ||
*/ | ||
public static AvgPxInd get(final short value) | ||
{ | ||
switch (value) | ||
{ | ||
case 0: return NoAveragePricing; | ||
case 1: return TradeispartofanAveragePriceGroupIdentifiedbytheAvgPxGrpID; | ||
case 3: return TradeispartofaNotionalValueAveragePriceGroup; | ||
case 255: return NULL_VAL; | ||
} | ||
|
||
throw new IllegalArgumentException("Unknown value: " + value); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
artio-ilink3-codecs/build/generated-src/iLinkBinary/BooleanFlag.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* Generated SBE (Simple Binary Encoding) message codec. */ | ||
package iLinkBinary; | ||
|
||
@SuppressWarnings("all") | ||
public enum BooleanFlag | ||
{ | ||
|
||
/** | ||
* False, No | ||
*/ | ||
False((short)0), | ||
|
||
|
||
/** | ||
* True, Yes | ||
*/ | ||
True((short)1), | ||
|
||
/** | ||
* To be used to represent not present or null. | ||
*/ | ||
NULL_VAL((short)255); | ||
|
||
private final short value; | ||
|
||
BooleanFlag(final short value) | ||
{ | ||
this.value = value; | ||
} | ||
|
||
/** | ||
* The raw encoded value in the Java type representation. | ||
* | ||
* @return the raw value encoded. | ||
*/ | ||
public short value() | ||
{ | ||
return value; | ||
} | ||
|
||
/** | ||
* Lookup the enum value representing the value. | ||
* | ||
* @param value encoded to be looked up. | ||
* @return the enum value representing the value. | ||
*/ | ||
public static BooleanFlag get(final short value) | ||
{ | ||
switch (value) | ||
{ | ||
case 0: return False; | ||
case 1: return True; | ||
case 255: return NULL_VAL; | ||
} | ||
|
||
throw new IllegalArgumentException("Unknown value: " + value); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
artio-ilink3-codecs/build/generated-src/iLinkBinary/BooleanNULL.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* Generated SBE (Simple Binary Encoding) message codec. */ | ||
package iLinkBinary; | ||
|
||
@SuppressWarnings("all") | ||
public enum BooleanNULL | ||
{ | ||
|
||
/** | ||
* False, No | ||
*/ | ||
False((short)0), | ||
|
||
|
||
/** | ||
* True, Yes | ||
*/ | ||
True((short)1), | ||
|
||
/** | ||
* To be used to represent not present or null. | ||
*/ | ||
NULL_VAL((short)255); | ||
|
||
private final short value; | ||
|
||
BooleanNULL(final short value) | ||
{ | ||
this.value = value; | ||
} | ||
|
||
/** | ||
* The raw encoded value in the Java type representation. | ||
* | ||
* @return the raw value encoded. | ||
*/ | ||
public short value() | ||
{ | ||
return value; | ||
} | ||
|
||
/** | ||
* Lookup the enum value representing the value. | ||
* | ||
* @param value encoded to be looked up. | ||
* @return the enum value representing the value. | ||
*/ | ||
public static BooleanNULL get(final short value) | ||
{ | ||
switch (value) | ||
{ | ||
case 0: return False; | ||
case 1: return True; | ||
case 255: return NULL_VAL; | ||
} | ||
|
||
throw new IllegalArgumentException("Unknown value: " + value); | ||
} | ||
} |
Oops, something went wrong.