Baseline.Car.MakeMetaAttribute C# (CSharp) Method

MakeMetaAttribute() public static method

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

        return "";
    }