github.com/qlik-oss/gopherciser@v0.18.6/globals/constant/sense.go (about) 1 package constant 2 3 // HyperCubeDataMode 4 const ( 5 //HyperCubeDataModeStraight • S or DATA_MODE_STRAIGHT 6 HyperCubeDataModeStraight = "S" 7 HyperCubeDataModeStraightL = "DATA_MODE_STRAIGHT" 8 //HyperCubeDataModePivot • P or DATA_MODE_PIVOT 9 HyperCubeDataModePivot = "P" 10 HyperCubeDataModePivotL = "DATA_MODE_PIVOT" 11 //HyperCubeDataModePivotStack • K or DATA_MODE_PIVOT_STACK 12 HyperCubeDataModePivotStack = "K" 13 HyperCubeDataModePivotStackL = "DATA_MODE_PIVOT_STACK" 14 //HyperCubeDataModeTree • T or DATA_MODE_TREE 15 HyperCubeDataModeTree = "T" 16 HyperCubeDataModeTreeL = "DATA_MODE_TREE" 17 ) 18 19 // NxDimCellType 20 const ( 21 NxDimCellValue = "V" 22 NxDimCellEmpty = "E" 23 NxDimCellNormal = "N" 24 NxDimCellTotal = "T" 25 NxDimCellOther = "O" 26 NxDimCellAggr = "A" 27 NxDimCellPseudo = "P" 28 NxDimCellRoot = "R" 29 NxDimCellNull = "U" 30 NxDimCellGenerated = "G" 31 ) 32 33 // DataReductionMode 34 const ( 35 DataReductionModeNone = "N" 36 DataReductionModeOneDim = "D1" 37 DataReductionModeScattered = "S" 38 DataReductionModeClustered = "C" 39 DataReductionModeStacked = "ST" 40 )