Enum Class Cs.Unary.Type

java.lang.Object
java.lang.Enum<Cs.Unary.Type>
org.openrewrite.csharp.tree.Cs.Unary.Type
All Implemented Interfaces:
Serializable, Comparable<Cs.Unary.Type>, Constable
Enclosing class:
Cs.Unary

public static enum Cs.Unary.Type extends Enum<Cs.Unary.Type>
  • Enum Constant Details

    • SuppressNullableWarning

      public static final Cs.Unary.Type SuppressNullableWarning
      Represent x! syntax
    • PointerIndirection

      public static final Cs.Unary.Type PointerIndirection
      Represent *int pointer types syntax
    • AddressOf

      public static final Cs.Unary.Type AddressOf
      Represent &a for pointer value access
    • FromEnd

      public static final Cs.Unary.Type FromEnd
      Represent [^3] syntax
  • Method Details

    • values

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

      public static Cs.Unary.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • isModifying

      public boolean isModifying()