fun getClassTypeWithName(className: String): VehClass? {
        if (vehClassList == null) init()
        for (v in vehClassList!!) {
            if (v.fullname.equals(className, ignoreCase = true)) return v
        }