Skip to content

Commit

Permalink
add complex types
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Niessner authored and jordanpadams committed May 26, 2023
1 parent 11c2929 commit 72cd004
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/gov/nasa/pds/objectAccess/DataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public enum NumericDataType {
64), SignedMSB2(16, "HALF"), SignedMSB4(32, "FULL"), SignedMSB8(64), UnsignedMSB2(16,
"HALF"), UnsignedMSB4(32, "FULL"), UnsignedMSB8(64), IEEE754LSBSingle(32,
"REAL"), IEEE754LSBDouble(64, "DOUBLE"), IEEE754MSBSingle(32,
"REAL"), IEEE754MSBDouble(64, "DOUBLE"), ASCII_Integer(32), ASCII_Real(64);
"REAL"), IEEE754MSBDouble(64, "DOUBLE"), ASCII_Integer(32), ASCII_Real(64),
ComplexLSB8(8),ComplexMSB8(8),ComplexLSB16(16),ComplexMSB16(16);

private int bits;
private String vicarAlias;
Expand Down

0 comments on commit 72cd004

Please sign in to comment.