Searched defs:value (Results 451 - 475 of 6334) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj2-hg/src/server/org/opends/server/schema/
H A DNumericStringSubstringMatchingRule.java134 * Retrieves the normalized form of the provided value, which is best suited
135 * for efficiently performing matching operations on that value.
137 * @param value The value to be normalized.
139 * @return The normalized version of the provided value.
141 * @throws DirectoryException If the provided value is invalid according to
145 public ByteString normalizeValue(ByteSequence value) argument
149 prepareUnicode(buffer, value, TRIM, NO_CASE_FOLD);
166 value.toString(), String.valueOf(c), pos);
187 return ByteString.valueOf(value
[all...]
H A DObjectIdentifierEqualityMatchingRule.java139 * Retrieves the normalized form of the provided value, which is best suited
140 * for efficiently performing matching operations on that value.
142 * @param value The value to be normalized.
144 * @return The normalized version of the provided value.
146 * @throws DirectoryException If the provided value is invalid according to
150 public ByteString normalizeValue(ByteSequence value) argument
154 toLowerCase(value, buffer, true);
241 * @param value1 The normalized form of the first value to compare.
242 * @param value2 The normalized form of the second value t
[all...]
H A DOctetStringEqualityMatchingRule.java128 * Retrieves the normalized form of the provided value, which is best suited
129 * for efficiently performing matching operations on that value.
131 * @param value The value to be normalized.
133 * @return The normalized version of the provided value.
135 * @throws DirectoryException If the provided value is invalid according to
139 public ByteString normalizeValue(ByteSequence value) argument
142 return value.toByteString();
H A DOctetStringSubstringMatchingRule.java128 * Retrieves the normalized form of the provided value, which is best suited
129 * for efficiently performing matching operations on that value.
131 * @param value The value to be normalized.
133 * @return The normalized version of the provided value.
135 * @throws DirectoryException If the provided value is invalid according to
139 public ByteString normalizeValue(ByteSequence value) argument
142 return value.toByteString();
148 * Normalizes the provided value fragment into a form that can be used to
151 * @param substring The value fragmen
[all...]
H A DPresentationAddressEqualityMatchingRule.java131 * Retrieves the normalized form of the provided value, which is best suited
132 * for efficiently performing matching operations on that value.
134 * @param value The value to be normalized.
136 * @return The normalized version of the provided value.
138 * @throws DirectoryException If the provided value is invalid according to
142 public ByteString normalizeValue(ByteSequence value) argument
146 toLowerCase(value, buffer, true);
151 if (value.length() > 0)
153 // This should only happen if the value i
[all...]
H A DProtocolInformationEqualityMatchingRule.java131 * Retrieves the normalized form of the provided value, which is best suited
132 * for efficiently performing matching operations on that value.
134 * @param value The value to be normalized.
136 * @return The normalized version of the provided value.
138 * @throws DirectoryException If the provided value is invalid according to
142 public ByteString normalizeValue(ByteSequence value) argument
146 toLowerCase(value, buffer, true);
151 if (value.length() > 0)
153 // This should only happen if the value i
[all...]
H A DTelephoneNumberEqualityMatchingRule.java130 * Retrieves the normalized form of the provided value, which is best suited
131 * for efficiently performing matching operations on that value.
133 * @param value The value to be normalized.
135 * @return The normalized version of the provided value.
137 * @throws DirectoryException If the provided value is invalid according to
141 public ByteString normalizeValue(ByteSequence value) argument
144 String valueString = value.toString();
149 // Iterate through the characters in the value and filter out everything
H A DTelephoneNumberSubstringMatchingRule.java134 * Retrieves the normalized form of the provided value, which is best suited
135 * for efficiently performing matching operations on that value.
137 * @param value The value to be normalized.
139 * @return The normalized version of the provided value.
141 * @throws DirectoryException If the provided value is invalid according to
145 public ByteString normalizeValue(ByteSequence value) argument
148 String valueString = value.toString();
153 // Iterate through the characters in the value and filter out everything
171 * Normalizes the provided value fragmen
[all...]
H A DUUIDEqualityMatchingRule.java132 * Retrieves the normalized form of the provided value, which is best suited
133 * for efficiently performing matching operations on that value.
135 * @param value The value to be normalized.
137 * @return The normalized version of the provided value.
139 * @throws DirectoryException If the provided value is invalid according to
143 public ByteString normalizeValue(ByteSequence value) argument
146 if (value.length() != 36)
149 value.toString(), value
[all...]
H A DUniqueMemberEqualityMatchingRule.java146 * Retrieves the normalized form of the provided value, which is best suited
147 * for efficiently performing matching operations on that value.
149 * @param value The value to be normalized.
151 * @return The normalized version of the provided value.
153 * @throws DirectoryException If the provided value is invalid according to
157 public ByteString normalizeValue(ByteSequence value) argument
160 String valueString = value.toString().trim();
164 // See if the value contains the "optional uid" portion. If we think it
H A DUserPasswordExactEqualityMatchingRule.java129 * Retrieves the normalized form of the provided value, which is best suited
130 * for efficiently performing matching operations on that value.
132 * @param value The value to be normalized.
134 * @return The normalized version of the provided value.
136 * @throws DirectoryException If the provided value is invalid according to
140 public ByteString normalizeValue(ByteSequence value) argument
147 if (UserPasswordSyntax.isEncoded(value))
149 StringBuilder builder = new StringBuilder(value.length());
151 for (int i=1; i < value
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DConditionResult.java84 Returns the logical inverse of a ConditionResult value. The inverse
85 of the UNDEFINED value is UNDEFINED.
87 @param value The value to invert.
88 @return The logical inverse of the supplied value.
90 public static ConditionResult inverseOf(ConditionResult value) { argument
91 switch (value) {
H A DDebugLogLevel.java78 * @param value The value of the level.
80 protected DebugLogLevel(String name, int value) argument
82 super(name, value);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DAccessibleTableHeaderRenderer.java53 public Component getTableCellRendererComponent(JTable table, Object value, argument
56 Component comp = renderer.getTableCellRendererComponent(table, value,
59 Utilities.stripHtmlToSingleLine(String.valueOf(value)));
H A DBaseDNCellRenderer.java55 public Component getTableCellRendererComponent(JTable table, Object value, argument
57 String text = (String)value;
H A DIndexCellRenderer.java63 public Component getListCellRendererComponent(JList list, Object value, argument
67 if (value instanceof AbstractIndexDescriptor)
69 mustReindex = info.mustReindex((AbstractIndexDescriptor)value);
71 if (value instanceof IndexDescriptor)
73 String name = ((IndexDescriptor)value).getName();
74 value = mustReindex ? name + " (*)" : name;
76 } else if (value instanceof VLVIndexDescriptor)
79 Utilities.getVLVNameInCellRenderer((VLVIndexDescriptor)value);
80 value = mustReindex ? name + " (*)" : name;
82 Component comp = super.getListCellRendererComponent(list, value, inde
[all...]
H A DNoLeftInsetCategoryComboBoxRenderer.java57 public Component getListCellRendererComponent(JList list, Object value, argument
60 Component comp = super.getListCellRendererComponent(list, value, index,
62 if (value instanceof CategorizedComboBoxElement)
64 CategorizedComboBoxElement element = (CategorizedComboBoxElement)value;
H A DSchemaElementComboBoxCellRenderer.java70 public Component getListCellRendererComponent(JList list, Object value, argument
73 if (value instanceof AttributeSyntax<?>)
75 String syntaxName = ((AttributeSyntax<?>)value).getSyntaxName();
78 value = ((AttributeSyntax<?>)value).getOID();
82 value = syntaxName;
85 else if (value instanceof CommonSchemaElements)
87 value = ((CommonSchemaElements)value).getNameOrOID();
89 else if (value instanceo
[all...]
H A DVLVSortOrderRenderer.java59 public Component getListCellRendererComponent(JList list, Object value, argument
62 if (value instanceof VLVSortOrder)
64 VLVSortOrder v = (VLVSortOrder)value;
67 value = INFO_CTRL_PANEL_VLV_ASCENDING_VLV_INDEX.get(
72 value = INFO_CTRL_PANEL_VLV_DESCENDING_VLV_INDEX.get(
77 list, value, index, isSelected, cellHasFocus);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DExtensibleIndexer.java41 * this interface to create the keys for an attribute value.
80 * @param value
81 * The attribute value for which keys are required.
85 public abstract void getKeys(AttributeValue value, argument
94 * @param value
98 * corresponding to the boolean value <code>true
106 public abstract void getKeys(AttributeValue value, argument
H A DSubstringMatchingRule.java51 * Normalizes the provided value fragment into a form that can be
54 * @param substring The value fragment to be normalized.
56 * @return The normalized form of the value fragment.
58 * @throws DirectoryException If the provided value fragment is
68 * Determines whether the provided value matches the given substring
73 * @param value The normalized value against which to
75 * @param subInitial The normalized substring value fragment
77 * the target value.
78 * @param subAnyElements The normalized substring value fragment
88 valueMatchesSubstring(ByteSequence value, ByteSequence subInitial, List<ByteSequence> subAnyElements, ByteSequence subFinal) argument
[all...]
/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/
H A DCategoryType.java33 * Gets the value of the name property.
42 * Sets the value of the name property.
44 * @param value
48 void setName(java.lang.String value); argument
51 * Gets the value of the operation property.
60 * Sets the value of the operation property.
62 * @param value
66 void setOperation(java.lang.String value); argument
69 * Gets the value of the id property.
78 * Sets the value o
84 setId(java.lang.String value) argument
[all...]
H A DRuntimeType.java35 * Gets the value of the libraries property.
45 * Sets the value of the libraries property.
47 * @param value
52 void setLibraries(com.sun.identity.diagnostic.base.core.jaxbgen.LibrariesType value); argument
55 * Gets the value of the loadOnStartup property.
65 * Sets the value of the loadOnStartup property.
67 * @param value
72 void setLoadOnStartup(com.sun.identity.diagnostic.base.core.jaxbgen.LoadOnStartupType value); argument
75 * Gets the value of the resourceBundles property.
85 * Sets the value o
92 setResourceBundles(com.sun.identity.diagnostic.base.core.jaxbgen.ResourceBundlesType value) argument
[all...]
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/
H A DAttributeType.java34 * Gets the value of the name property.
43 * Sets the value of the name property.
45 * @param value
49 void setName(java.lang.String value); argument
52 * Gets the value of the Value property.
H A DBaseConfigType.java34 * Gets the value of the Attribute property.
58 * Gets the value of the metaAlias property.
67 * Sets the value of the metaAlias property.
69 * @param value
73 void setMetaAlias(java.lang.String value); argument

Completed in 245 milliseconds

<<11121314151617181920>>