keycloak-federation
公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
org.freedesktop.dbus.Path クラス
org.freedesktop.dbus.Path の継承関係図
Inheritance graph
org.freedesktop.dbus.Path 連携図
Collaboration graph

公開メンバ関数

 Path (String path)
 
String getPath ()
 
String toString ()
 
boolean equals (Object other)
 
int hashCode ()
 
int compareTo (Path that)
 

限定公開変数類

String path
 

詳解

構築子と解体子

◆ Path()

org.freedesktop.dbus.Path.Path ( String  path)
inline
16  {
17  this.path = path;
18  }
String path
Definition: Path.java:14

関数詳解

◆ compareTo()

int org.freedesktop.dbus.Path.compareTo ( Path  that)
inline
36  {
37  return path.compareTo(that.path);
38  }
String path
Definition: Path.java:14

◆ equals()

boolean org.freedesktop.dbus.Path.equals ( Object  other)
inline
28  {
29  return (other instanceof Path) && path.equals(((Path) other).path);
30  }
Path(String path)
Definition: Path.java:16
String path
Definition: Path.java:14

◆ getPath()

String org.freedesktop.dbus.Path.getPath ( )
inline
20  {
21  return path;
22  }
String path
Definition: Path.java:14

◆ hashCode()

int org.freedesktop.dbus.Path.hashCode ( )
inline
32  {
33  return path.hashCode();
34  }
String path
Definition: Path.java:14

◆ toString()

String org.freedesktop.dbus.Path.toString ( )
inline
24  {
25  return path;
26  }
String path
Definition: Path.java:14

メンバ詳解

◆ path

String org.freedesktop.dbus.Path.path
protected

このクラス詳解は次のファイルから抽出されました: