public enum SwiftSdkLayoutType extends Enum<SwiftSdkLayoutType>
| Enum Constant and Description | 
|---|
PRE_XCODE_11  | 
XCODE_11  | 
XCODE_11_HYBRID  | 
| Modifier and Type | Method and Description | 
|---|---|
static com.google.common.collect.ImmutableList<Path> | 
getLinkPaths(AppleSdk sdk,
            AppleSdkPaths sdkPaths,
            String swiftName)
Given the SDK layout and version, return the correct list of lib directory paths 
 | 
static SwiftSdkLayoutType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static SwiftSdkLayoutType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SwiftSdkLayoutType XCODE_11
public static final SwiftSdkLayoutType XCODE_11_HYBRID
public static final SwiftSdkLayoutType PRE_XCODE_11
public static SwiftSdkLayoutType[] values()
for (SwiftSdkLayoutType c : SwiftSdkLayoutType.values()) System.out.println(c);
public static SwiftSdkLayoutType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static com.google.common.collect.ImmutableList<Path> getLinkPaths(AppleSdk sdk, AppleSdkPaths sdkPaths, String swiftName)