Searched defs:getValue (Results 76 - 100 of 422) sorted by relevance

1234567891011>>

/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DParsedDirective.java40 String getValue() method in class:ParsedDirective
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java41 * @param aValue encapsulated getValue
52 public final T getValue() { method in class:AbstractAttr
/external/smack/src/com/novell/sasl/client/
H A DParsedDirective.java40 String getValue() method in class:ParsedDirective
/external/smack/src/org/jivesoftware/smack/packet/
H A DDefaultPacketExtension.java40 * In this case, getValue("color") would return "blue", and getValue("food") would
86 String value = getValue(name);
114 public synchronized String getValue(String name) { method in class:DefaultPacketExtension
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractKeyValue.java67 public V getValue() { method in class:AbstractKeyValue
77 return new StringBuilder().append(getKey()).append('=').append(getValue()).toString();
H A DMapIterator.java32 * to <code>next()</code>, the <code>getValue()</code> method provides direct
38 * Object value = it.getValue();
82 V getValue(); method in interface:MapIterator
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommandNote.java49 public String getValue() { method in class:AdHocCommandNote
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDefaultPrivateData.java43 * In this case, getValue("color") would return "blue", and getValue("food") would
90 String value = getValue(name);
118 public synchronized String getValue(String name) { method in class:DefaultPrivateData
H A DHeader.java39 public String getValue() method in class:Header
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DChatSetting.java41 public String getValue() { method in class:ChatSetting
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedAnnotationElement.java52 @Nonnull @Override public EncodedValue getValue() { return value; } method in class:DexBackedAnnotationElement
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
H A DDexBackedArrayEncodedValue.java69 public List<? extends EncodedValue> getValue() { method in class:DexBackedArrayEncodedValue
H A DDexBackedEnumEncodedValue.java51 @Nonnull @Override public FieldReference getValue() { method in class:DexBackedEnumEncodedValue
H A DDexBackedFieldEncodedValue.java51 @Nonnull @Override public FieldReference getValue() { method in class:DexBackedFieldEncodedValue
H A DDexBackedMethodEncodedValue.java51 @Nonnull @Override public MethodReference getValue() { method in class:DexBackedMethodEncodedValue
H A DDexBackedStringEncodedValue.java49 @Nonnull @Override public String getValue() { method in class:DexBackedStringEncodedValue
H A DDexBackedTypeEncodedValue.java49 @Nonnull @Override public String getValue() { method in class:DexBackedTypeEncodedValue
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DAnnotationElement.java55 @Nonnull EncodedValue getValue(); method in interface:AnnotationElement
65 * hashCode = hashCode*31 + getValue().hashCode();
76 * the return values of getName() and getValue() are both equal.
86 * The comparison is based on the value of getName() and getValue(), in that order.
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
H A DArrayEncodedValue.java47 @Nonnull List<? extends EncodedValue> getValue(); method in interface:ArrayEncodedValue
56 * int hashCode = getValue().hashCode();
66 * This ArrayEncodedValue is equal to another ArrayEncodedValue if the values returned by getValue() are equal.
77 * ArrayEncodedValue, the lists returned by getValue() are compared, based on the semantics of
H A DBooleanEncodedValue.java46 boolean getValue(); method in interface:BooleanEncodedValue
55 * int hashCode = getValue()?1:0;
65 * This BooleanEncodedValue is equal to another BooleanEncodedValue if the values returned by getValue() are equal.
76 * BooleanEncodedValue, the return values of getValue() are compared, based on the semantics of
H A DByteEncodedValue.java46 byte getValue(); method in interface:ByteEncodedValue
55 * int hashCode = getValue();
65 * This ByteEncodedValue is equal to another ByteEncodedValue if the values returned by getValue() are equal.
76 * ByteEncodedValue, the return values of getValue() are compared.
H A DCharEncodedValue.java46 char getValue(); method in interface:CharEncodedValue
55 * int hashCode = getValue();
65 * This CharEncodedValue is equal to another CharEncodedValue if the values returned by getValue() are equal.
76 * CharEncodedValue, the return values of getValue() are compared.
H A DDoubleEncodedValue.java46 double getValue(); method in interface:DoubleEncodedValue
55 * long v = Double.doubleToRawLongBits(getValue());
70 * getValue().doubleToRawLongBits() are equal.
72 * Note: this isn't quite the same as getValue() == getValue(), due to various NaN issues and signed zero issues.
83 * DoubleEncodedValue, the return values of getValue() are compared, using the semantics of Double.compare()
H A DEnumEncodedValue.java50 @Nonnull FieldReference getValue(); method in interface:EnumEncodedValue
59 * int hashCode = getValue.hashCode();
69 * This EnumEncodedValue is equal to another EnumEncodedValue if the values returned by getValue() are equal.
80 * EnumEncodedValue, the return values of getValue() are compared.
H A DFieldEncodedValue.java48 @Nonnull FieldReference getValue(); method in interface:FieldEncodedValue
57 * int hashCode = getValue.hashCode();
67 * This FieldEncodedValue is equal to another FieldEncodedValue if the values returned by getValue() are equal.
78 * FieldEncodedValue, the return values of getValue() are compared.

Completed in 211 milliseconds

1234567891011>>