@@ -5,32 +5,14 @@ import SwiftJavaJNICore
55
66@JavaClass ( " android.net.wifi.aware.Characteristics " , implements: Parcelable . self)
77open class Characteristics : JavaObject {
8- /// Java method `getNumberOfSupportedPublishSessions`.
9- ///
10- /// ### Java method signature
11- /// ```java
12- /// public int android.net.wifi.aware.Characteristics.getNumberOfSupportedPublishSessions()
13- /// ```
14- @JavaMethod
15- open func getNumberOfSupportedPublishSessions( ) -> Int32
16-
17- /// Java method `getNumberOfSupportedSubscribeSessions`.
18- ///
19- /// ### Java method signature
20- /// ```java
21- /// public int android.net.wifi.aware.Characteristics.getNumberOfSupportedSubscribeSessions()
22- /// ```
23- @JavaMethod
24- open func getNumberOfSupportedSubscribeSessions( ) -> Int32
25-
26- /// Java method `isInstantCommunicationModeSupported`.
8+ /// Java method `getSupportedCipherSuites`.
279 ///
2810 /// ### Java method signature
2911 /// ```java
30- /// public boolean android.net.wifi.aware.Characteristics.isInstantCommunicationModeSupported ()
12+ /// public int android.net.wifi.aware.Characteristics.getSupportedCipherSuites ()
3113 /// ```
3214@JavaMethod
33- open func isInstantCommunicationModeSupported ( ) -> Bool
15+ open func getSupportedCipherSuites ( ) -> Int32
3416
3517 /// Java method `getMaxServiceNameLength`.
3618 ///
@@ -95,15 +77,6 @@ open class Characteristics: JavaObject {
9577@JavaMethod
9678 open func isSuspensionSupported( ) -> Bool
9779
98- /// Java method `getSupportedCipherSuites`.
99- ///
100- /// ### Java method signature
101- /// ```java
102- /// public int android.net.wifi.aware.Characteristics.getSupportedCipherSuites()
103- /// ```
104- @JavaMethod
105- open func getSupportedCipherSuites( ) -> Int32
106-
10780 /// Java method `getSupportedPairingCipherSuites`.
10881 ///
10982 /// ### Java method signature
@@ -130,6 +103,33 @@ open class Characteristics: JavaObject {
130103 /// ```
131104@JavaMethod
132105 open func writeToParcel( _ arg0: Parcel ? , _ arg1: Int32 )
106+
107+ /// Java method `getNumberOfSupportedPublishSessions`.
108+ ///
109+ /// ### Java method signature
110+ /// ```java
111+ /// public int android.net.wifi.aware.Characteristics.getNumberOfSupportedPublishSessions()
112+ /// ```
113+ @JavaMethod
114+ open func getNumberOfSupportedPublishSessions( ) -> Int32
115+
116+ /// Java method `getNumberOfSupportedSubscribeSessions`.
117+ ///
118+ /// ### Java method signature
119+ /// ```java
120+ /// public int android.net.wifi.aware.Characteristics.getNumberOfSupportedSubscribeSessions()
121+ /// ```
122+ @JavaMethod
123+ open func getNumberOfSupportedSubscribeSessions( ) -> Int32
124+
125+ /// Java method `isInstantCommunicationModeSupported`.
126+ ///
127+ /// ### Java method signature
128+ /// ```java
129+ /// public boolean android.net.wifi.aware.Characteristics.isInstantCommunicationModeSupported()
130+ /// ```
131+ @JavaMethod
132+ open func isInstantCommunicationModeSupported( ) -> Bool
133133}
134134extension JavaClass< Characteristics > {
135135 @JavaStaticField ( isFinal: true )
0 commit comments