Enum DepType

java.lang.Object
java.lang.Enum<DepType>
pl.gdela.socomo.codemap.DepType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DepType>, java.lang.constant.Constable

public enum DepType
extends java.lang.Enum<DepType>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    ANNOTATED  
    ANNOTATION_VALUE  
    CALLS  
    CALLS_DYNAMIC  
    CASTS_TO  
    CATCHES  
    CREATES  
    CREATES_ARRAY  
    EXTENDS  
    HAS_PARAM  
    IMPLEMENTS  
    IS_OF_TYPE  
    PERMITS  
    READS_WRITES  
    REFERENCES  
    RETURNS  
    THROWS  
    TYPE_PARAM  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString()  
    static DepType valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static DepType[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • REFERENCES

      public static final DepType REFERENCES
    • EXTENDS

      public static final DepType EXTENDS
    • PERMITS

      public static final DepType PERMITS
    • IMPLEMENTS

      public static final DepType IMPLEMENTS
    • IS_OF_TYPE

      public static final DepType IS_OF_TYPE
    • HAS_PARAM

      public static final DepType HAS_PARAM
    • RETURNS

      public static final DepType RETURNS
    • CALLS

      public static final DepType CALLS
    • CALLS_DYNAMIC

      public static final DepType CALLS_DYNAMIC
    • READS_WRITES

      public static final DepType READS_WRITES
    • CREATES

      public static final DepType CREATES
    • CREATES_ARRAY

      public static final DepType CREATES_ARRAY
    • CASTS_TO

      public static final DepType CASTS_TO
    • THROWS

      public static final DepType THROWS
    • CATCHES

      public static final DepType CATCHES
    • TYPE_PARAM

      public static final DepType TYPE_PARAM
    • ANNOTATED

      public static final DepType ANNOTATED
    • ANNOTATION_VALUE

      public static final DepType ANNOTATION_VALUE
  • Method Details

    • values

      public static DepType[] 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 DepType valueOf​(java.lang.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:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Enum<DepType>