Class PortAddress

java.lang.Object
org.praxislive.core.Value
org.praxislive.core.PortAddress

public class PortAddress extends Value
  • Field Details

  • Method Details

    • component

      public ComponentAddress component()
    • portID

      public String portID()
    • toString

      public String toString()
      Description copied from class: Value
      Values must override the default method to return a string representation that is immutable.
      Specified by:
      toString in class Value
      Returns:
      String representation
    • hashCode

      public int hashCode()
      Description copied from class: Value
      Values must override the default hashcode method.
      Specified by:
      hashCode in class Value
      Returns:
      int hashcode
    • equals

      public boolean equals(Object obj)
      Description copied from class: Value
      Values must override the default equals method. This method should only return true if the supplied Object is of the same type as the implementing Value. Values of an unknown type should be coerced before calling this method. This method does not have to guarantee that this.equals(that) == this.toString().equals(that.toString())
      Specified by:
      equals in class Value
      Parameters:
      obj -
      Returns:
      boolean
    • parse

      public static PortAddress parse(String address) throws ValueFormatException
      Throws:
      ValueFormatException
    • of

      public static PortAddress of(String address)
    • of

      public static PortAddress of(ComponentAddress component, String id)
    • from

      public static Optional<PortAddress> from(Value arg)
    • isValidID

      public static boolean isValidID(String id)
    • info

      public static ArgumentInfo info()