- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getNameType (0.34 seconds)
-
src/test/java/jcifs/NetbiosNameTest.java
@Test @DisplayName("Should handle getNameType() method") void testGetNameType() { // Given int testType = 0x20; // Server service when(mockNetbiosName.getNameType()).thenReturn(testType); // When int nameType = mockNetbiosName.getNameType(); // Then assertEquals(testType, nameType); verify(mockNetbiosName).getNameType(); } @ParameterizedTestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8K bytes - Click Count (0) -
src/main/java/jcifs/NetbiosName.java
* * @return the scope id */ String getScope(); /** * Returns the NetBIOS name type. * * @return the name type */ int getNameType();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.2K bytes - Click Count (0) -
src/main/java/jcifs/netbios/Name.java
* @return scope id */ @Override public String getScope() { return this.scope; } /** * * @return the name type */ @Override public int getNameType() { return this.hexCode; } /** * Constructs a NetBIOS name with the specified parameters. * * @param cfg the configuration to useCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8K bytes - Click Count (0) -
src/main/java/jcifs/NetbiosAddress.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.1K bytes - Click Count (0)