Baseline.Car.FuelFiguresGroup.SpeedMetaAttribute C# (CSharp) Method

SpeedMetaAttribute() public static method

public static SpeedMetaAttribute ( MetaAttribute metaAttribute ) : string
metaAttribute MetaAttribute
return string
        public static string SpeedMetaAttribute(MetaAttribute metaAttribute)
        {
            switch (metaAttribute)
            {
                case MetaAttribute.Epoch: return "unix";
                case MetaAttribute.TimeUnit: return "nanosecond";
                case MetaAttribute.SemanticType: return "";
            }

            return "";
        }