fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
13 lines (12 loc) • 460 B
TypeScript
import type { Field } from '../fields/Field';
import { type ISpecEnums } from '../spec/SpecEnums';
import type { FIXValue } from '../util/util';
export declare class Enums {
enums: ISpecEnums[];
cacheMap: Map<string, ISpecEnums>;
cacheMapTag: Map<string, ISpecEnums>;
constructor();
getEnum(tag: string, value: FIXValue): ISpecEnums | undefined;
getEnumByTag(tag: string): ISpecEnums | undefined;
processEnum(field: Field): void;
}