Enum Linkage

java.lang.Object
java.lang.Enum<Linkage>
org.robovm.compiler.llvm.Linkage
All Implemented Interfaces:
Serializable, Comparable<Linkage>

public enum Linkage
extends Enum<Linkage>
Version:
$Id$
  • Enum Constant Details

    • _private

      public static final Linkage _private
    • linkonce

      public static final Linkage linkonce
    • linkonce_odr

      public static final Linkage linkonce_odr
    • external

      public static final Linkage external
    • internal

      public static final Linkage internal
    • weak

      public static final Linkage weak
    • appending

      public static final Linkage appending
  • Method Details

    • values

      public static Linkage[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Linkage valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Linkage>