Record Class WellKnownEndpointManager.Segment

java.lang.Object
java.lang.Record
org.forgerock.openig.wellknown.WellKnownEndpointManager.Segment
Record Components:
value - The value of the segment.
Enclosing class:
WellKnownEndpointManager

public static record WellKnownEndpointManager.Segment(String value) extends Record
Represents a segment of an endpoint path. Segments are immutable and validated upon creation.
  • Constructor Details

    • Segment

      public Segment(String value)
      Constructs a new Segment.
      Parameters:
      value - The value of the segment.
      Throws:
      IllegalArgumentException - if the value is null, empty, or contains a '/' character.
  • Method Details

    • segment

      public static WellKnownEndpointManager.Segment segment(String singleElement)
      Creates a new Segment instance from a single string value.
      Parameters:
      singleElement - The value of the segment. Must not be null, empty, or contain a '/' character.
      Returns:
      A new Segment instance initialized with the provided value.
      Throws:
      IllegalArgumentException - if the value is null, empty, or contains a '/' character.
    • segmented

      public static List<WellKnownEndpointManager.Segment> segmented(String path)
      Splits a given path into a list of segments. Each segment is created by removing leading and trailing slashes from the path, splitting it on the '/' character, and filtering out empty segments.
      Parameters:
      path - The path to split into segments. Must not be null.
      Returns:
      A list of WellKnownEndpointManager.Segment objects representing the path segments. Returns an empty list if the path contains no valid segments.
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • value

      public String value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component