Class URLWithScheme

  • Direct Known Subclasses:
    GUID, URI

    public abstract class URLWithScheme
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String host  
      java.lang.String path  
      java.lang.Integer port  
      java.lang.String scheme  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected URLWithScheme​(java.lang.String scheme, java.lang.String host, java.lang.Integer port, java.lang.String path)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • scheme

        @Nonnull
        public final java.lang.String scheme
      • host

        @Nullable
        public final java.lang.String host
      • port

        @Nullable
        public final java.lang.Integer port
      • path

        @Nonnull
        public final java.lang.String path
    • Constructor Detail

      • URLWithScheme

        protected URLWithScheme​(@Nonnull
                                java.lang.String scheme,
                                @Nullable
                                java.lang.String host,
                                @Nullable
                                java.lang.Integer port,
                                @Nonnull
                                java.lang.String path)
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object