Hey guys, I am rather new to Julia, but will try to do my best to explain my question. So basically I am making an enum (array?) called “Cat” which following variables:
@enum Cat begin
Points
Idp
Vel
Rhop
Mass
Press
Vol
Ace
Vor
Typ #Typ, since "Type" is illegal to assign
Mk
end
Where the integer values are non important since I use two different dicts like this:
const searchString = Dict(Points => "POINTS ",Idp=>"POINT_DATA ",Vel=>"Vel ",Rhop=>"Rhop ",Mass=>"Mass ",Press => "Press ",Vol => "Vol ",Ace => "Ace ",Vor => "Vor ",Typ=>"Type ",Mk => "Mk ")
const catType = Dict(Points => Float32,Idp=>Int32,Vel=>Float32,Rhop=>Float32,Mass=>Float32,Press =>Float32,Vol=>Float32,Ace=>Float32,Vor=>Float32,Typ=>Int8,Mk=>Int8)
So this works fine, but I want to improve it. So basically my question is:
Can I generate my enum Cat by using a String Array initially? If yes, how would I do that?
So in pseudo code code:
“Points” => enum Cat
Cat = Points
I hope it makes sense.
Kind regards