Package com.teamdev.jxbrowser.navigation
Interface NavigationEntry
public interface NavigationEntry
A navigation history entry.
-
Method Summary
Modifier and TypeMethodDescriptiondefault intReturns the status code of the last known successful navigation.default StringReturns a string that represents the URL that caused this entry to be created.default PageTypepageType()Returns the page type that tells if this entry is for an interstitial or error page.default TimestampReturns the time at which the last known navigation was completed.default Stringtitle()Returns the title as set by the web page or an empty string if there is no title set.default Stringurl()Returns a string that represents the actual URL of the web page.
-
Method Details
-
title
Returns the title as set by the web page or an empty string if there is no title set. -
url
Returns a string that represents the actual URL of the web page. -
originalUrl
Returns a string that represents the URL that caused this entry to be created. -
httpStatus
default int httpStatus()Returns the status code of the last known successful navigation. -
pageType
Returns the page type that tells if this entry is for an interstitial or error page. -
timestamp
Returns the time at which the last known navigation was completed. A navigation can be completed more than once if the page is reloaded.
-