Baseline.Car.CodeMetaAttribute C# (CSharp) Method

CodeMetaAttribute() public static method

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

        return "";
    }