{ "version": 3, "sources": ["src/app/shared/enums/FundInvestmentStrategyType.enum.ts"], "sourcesContent": ["export enum FundInvestmentStrategyType {\n Core = 1,\n CorePlus = 2,\n ValueAdd = 3,\n Opportunistic = 4,\n Other = 5,\n Development = 6\n // if changing or adding values, update all other methods (toString, toList)\n // and backend enums\n}\n\n// tslint:disable-next-line:no-namespace\nexport namespace FundInvestmentStrategyType {\n export function toString(investmentType: FundInvestmentStrategyType): string {\n switch (investmentType) {\n case FundInvestmentStrategyType.Core:\n return 'Core';\n case FundInvestmentStrategyType.CorePlus:\n return 'Core plus';\n case FundInvestmentStrategyType.ValueAdd:\n return 'Value-add';\n case FundInvestmentStrategyType.Opportunistic:\n return 'Opportunistic';\n case FundInvestmentStrategyType.Other:\n return 'Other';\n case FundInvestmentStrategyType.Development:\n return 'Development';\n\n default:\n return null;\n }\n }\n\n export function listAll() {\n return [FundInvestmentStrategyType.Core, FundInvestmentStrategyType.CorePlus, FundInvestmentStrategyType.ValueAdd, FundInvestmentStrategyType.Opportunistic, FundInvestmentStrategyType.Development, FundInvestmentStrategyType.Other];\n }\n\n export function parse(investmentTypeStr: string): FundInvestmentStrategyType {\n return FundInvestmentStrategyType[investmentTypeStr];\n }\n\n export function OpportunisticLikeType(strategyType: FundInvestmentStrategyType) : boolean {\n return [FundInvestmentStrategyType.Opportunistic, FundInvestmentStrategyType.Development].includes(strategyType);\n }\n \n export function OpportunisticLikeOrValueAddType(strategyType: FundInvestmentStrategyType) : boolean {\n return [FundInvestmentStrategyType.Opportunistic, FundInvestmentStrategyType.Development, FundInvestmentStrategyType.ValueAdd].includes(strategyType);\n }\n}\n\nexport default FundInvestmentStrategyType;\n"], "mappings": "AAAA,IAAYA,EAAZ,SAAYA,EAA0B,CACpCA,OAAAA,EAAAA,EAAA,KAAA,CAAA,EAAA,OACAA,EAAAA,EAAA,SAAA,CAAA,EAAA,WACAA,EAAAA,EAAA,SAAA,CAAA,EAAA,WACAA,EAAAA,EAAA,cAAA,CAAA,EAAA,gBACAA,EAAAA,EAAA,MAAA,CAAA,EAAA,QACAA,EAAAA,EAAA,YAAA,CAAA,EAAA,cANUA,CASZ,EATYA,GAA0B,CAAA,CAAA,GAYtC,SAAiBA,EAA0B,CACzC,SAAgBC,EAASC,EAA0C,CACjE,OAAQA,EAAc,CACpB,KAAKF,EAA2BG,KAC9B,MAAO,OACT,KAAKH,EAA2BI,SAC9B,MAAO,YACT,KAAKJ,EAA2BK,SAC9B,MAAO,YACT,KAAKL,EAA2BM,cAC9B,MAAO,gBACT,KAAKN,EAA2BO,MAC9B,MAAO,QACT,KAAKP,EAA2BQ,YAC9B,MAAO,cAET,QACE,OAAO,IACX,CACF,CAlBgBR,EAAAC,SAAQA,EAoBxB,SAAgBQ,GAAO,CACrB,MAAO,CAACT,EAA2BG,KAAMH,EAA2BI,SAAUJ,EAA2BK,SAAUL,EAA2BM,cAAeN,EAA2BQ,YAAaR,EAA2BO,KAAK,CACvO,CAFgBP,EAAAS,QAAOA,EAIvB,SAAgBC,EAAMC,EAAyB,CAC7C,OAAOX,EAA2BW,CAAiB,CACrD,CAFgBX,EAAAU,MAAKA,EAIrB,SAAgBE,EAAsBC,EAAwC,CAC5E,MAAO,CAACb,EAA2BM,cAAeN,EAA2BQ,WAAW,EAAEM,SAASD,CAAY,CACjH,CAFgBb,EAAAY,sBAAqBA,EAIrC,SAAgBG,EAAgCF,EAAwC,CACtF,MAAO,CAACb,EAA2BM,cAAeN,EAA2BQ,YAAaR,EAA2BK,QAAQ,EAAES,SAASD,CAAY,CACtJ,CAFgBb,EAAAe,gCAA+BA,CAGjD,GApCiBf,IAAAA,EAA0B,CAAA,EAAA,EAsC3C,IAAAgB,EAAehB", "names": ["FundInvestmentStrategyType", "toString", "investmentType", "Core", "CorePlus", "ValueAdd", "Opportunistic", "Other", "Development", "listAll", "parse", "investmentTypeStr", "OpportunisticLikeType", "strategyType", "includes", "OpportunisticLikeOrValueAddType", "FundInvestmentStrategyType_enum_default"] }