@MarshalsPointer public static long toNative(SCNSceneAttribute o, long flags) { if (o == null) { return 0L; } return NSObject.Marshaler.toNative(o.value(), flags); }
public static SCNSceneAttribute valueOf(NSString value) { for (SCNSceneAttribute v : values) { if (v.value().equals(value)) { return v; } } throw new IllegalArgumentException( "No constant with value " + value + " found in " + /*<name>*/ SCNSceneAttribute /*</name>*/.class.getName()); }