Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.naming.jmod - Naming Module
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module.
JDK 11 Naming module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.naming.jmod.
JDK 11 Naming module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Naming module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.naming.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/naming/ldap/SortKey.java
/* * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.naming.ldap; /** * A sort key and its associated sort parameters. * This class implements a sort key which is used by the LDAPv3 * Control for server-side sorting of search results as defined in * <a href="http://www.ietf.org/rfc/rfc2891.txt">RFC 2891</a>. * * @since 1.5 * @see SortControl * @author Vincent Ryan */ public class SortKey { /* * The ID of the attribute to sort by. */ private String attrID; /* * The sort order. Ascending order, by default. */ private boolean reverseOrder = false; /* * The ID of the matching rule to use for ordering attribute values. */ private String matchingRuleID = null; /** * Creates the default sort key for an attribute. Entries will be sorted * according to the specified attribute in ascending order using the * ordering matching rule defined for use with that attribute. * * @param attrID The non-null ID of the attribute to be used as a sort * key. */ public SortKey(String attrID) { this.attrID = attrID; } /** * Creates a sort key for an attribute. Entries will be sorted according to * the specified attribute in the specified sort order and using the * specified matching rule, if supplied. * * @param attrID The non-null ID of the attribute to be used as * a sort key. * @param ascendingOrder If true then entries are arranged in ascending * order. Otherwise there are arranged in * descending order. * @param matchingRuleID The possibly null ID of the matching rule to * use to order the attribute values. If not * specified then the ordering matching rule * defined for the sort key attribute is used. */ public SortKey(String attrID, boolean ascendingOrder, String matchingRuleID) { this.attrID = attrID; reverseOrder = (! ascendingOrder); this.matchingRuleID = matchingRuleID; } /** * Retrieves the attribute ID of the sort key. * * @return The non-null Attribute ID of the sort key. */ public String getAttributeID() { return attrID; } /** * Determines the sort order. * * @return true if the sort order is ascending, false if descending. */ public boolean isAscending() { return (! reverseOrder); } /** * Retrieves the matching rule ID used to order the attribute values. * * @return The possibly null matching rule ID. If null then the * ordering matching rule defined for the sort key attribute * is used. */ public String getMatchingRuleID() { return matchingRuleID; } }
⏎ javax/naming/ldap/SortKey.java
Or download all of them as a single archive file:
File name: java.naming-11.0.1-src.zip File size: 461792 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.net.http.jmod - Net HTTP Module
2020-09-30, 61489👍, 0💬
Popular Posts:
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...
How to read XML document from socket connections with the socket\DelayedInput.java provided in the A...