Searched refs:value (Results 151 - 175 of 3502) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DVariability.java45 private int value; field in class:Variability
48 * An invalid Variablity value.
82 return value;
86 * Maps an integer value its corresponding Variability attribute.
87 * If the integer value does not have a corresponding Variability enum
88 * value, the {@link Variability#INVALID} is returned
90 * @param value an integer representation of a Variability attribute
92 * <code>value</code> or {@link Variability#INVALID}
95 public static Variability toVariability(int value) { argument
97 if (value <
104 Variability(String name, int value) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DUnits.java46 private final int value; field in class:Units
49 * An Invalid Units value.
75 * a unit of measure, this Units value serves to distinguish String
100 return value;
104 * Maps an integer value to its corresponding Units attribute.
105 * If the integer value does not have a corresponding Units enum
106 * value, then {@link Units#INVALID} is returned.
108 * @param value an integer representation of counter Units
109 * @return Units - the Units object for the given <code>value</code>
112 public static Units toUnits(int value) { argument
121 Units(String name, int value) argument
[all...]
H A DVariability.java45 private int value; field in class:Variability
48 * An invalid Variablity value.
82 return value;
86 * Maps an integer value its corresponding Variability attribute.
87 * If the integer value does not have a corresponding Variability enum
88 * value, the {@link Variability#INVALID} is returned
90 * @param value an integer representation of a Variability attribute
92 * <code>value</code> or {@link Variability#INVALID}
95 public static Variability toVariability(int value) { argument
97 if (value <
104 Variability(String name, int value) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVMReg.java37 private int value; field in class:VMReg
59 value = i;
63 return value;
68 return (int) matcherRegEncodeAddr.getCIntegerAt(value, 1, true);
70 return value;
78 return ((VMReg) arg).value == value;
81 public boolean lessThan(VMReg arg) { return value < arg.value; }
82 public boolean lessThanOrEqual(VMReg arg) { return value <
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DBAD_POLICY.java38 final short value = (short) (0L); field in interface:BAD_POLICY
H A DBAD_POLICY_TYPE.java38 final short value = (short) (2L); field in interface:BAD_POLICY_TYPE
H A DBAD_POLICY_VALUE.java29 * Contains the value used to indicate a policy value that is
36 * The value used to represent a bad policy value error
40 final short value = (short) (3L); field in interface:BAD_POLICY_VALUE
H A DOMGVMCID.java37 * The vendor minor code ID reserved for OMG. This value is or'd with
38 * the high order 20 bits of the minor code to produce the minor value
41 static final int value = 0x4f4d0000; field in interface:OMGVMCID
H A DPRIVATE_MEMBER.java45 final short value = (short) (0L); field in interface:PRIVATE_MEMBER
H A DPUBLIC_MEMBER.java46 final short value = (short) (1L); field in interface:PUBLIC_MEMBER
H A DUNSUPPORTED_POLICY.java39 final short value = (short) (1L); field in interface:UNSUPPORTED_POLICY
H A DUNSUPPORTED_POLICY_VALUE.java29 * A <tt>PolicyErrorCode</tt> which would be filled if the value
31 * valid type and within the valid range for that type, but this valid value
40 final short value = (short) (4L); field in interface:UNSUPPORTED_POLICY_VALUE
H A DVM_ABSTRACT.java35 /** The value representing an abstract interface value type in
38 final short value = (short) (2L); field in interface:VM_ABSTRACT
H A DVM_CUSTOM.java28 /** Defines the code used to represent a custom marshalled value type in
35 /** The value representing a custom marshalled value type in
38 final short value = (short) (1L); field in interface:VM_CUSTOM
H A DVM_NONE.java29 * Defines the code used to represent the one of the values of a value type
40 * The value representing the value type in a typecode as per
43 final short value = (short) (0L); field in interface:VM_NONE
H A DVM_TRUNCATABLE.java28 /** Defines the code used to represent a truncatable value type in
29 * a typecode. A value type is truncatable if it inherits "safely"
30 * from another value type, which means it can be cast to a more
37 /** The value representing a truncatable value type in
40 final short value = (short) (3L); field in interface:VM_TRUNCATABLE
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DDosFileAttributeView.java101 * Updates the value of the read-only attribute.
105 * implementation may, for example, require to read the existing value of
108 * @param value
109 * the new value of the attribute
118 void setReadOnly(boolean value) throws IOException; argument
121 * Updates the value of the hidden attribute.
125 * implementation may, for example, require to read the existing value of
128 * @param value
129 * the new value of the attribute
138 void setHidden(boolean value) throw argument
158 setSystem(boolean value) argument
178 setArchive(boolean value) argument
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DDriverPropertyInfo.java40 * name and value. The <code>description</code> and <code>choices</code>
45 * @param value the current value, which may be null
47 public DriverPropertyInfo(String name, String value) { argument
49 this.value = value;
63 * The <code>required</code> field is <code>true</code> if a value must be
70 * The <code>value</code> field specifies the current value of
74 * may be null if no value i
76 public String value = null; field in class:DriverPropertyInfo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DStringReference.java45 * @return the string value.
47 String value(); method in interface:StringReference
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelTransform.java34 abstract public double transform(double value); argument
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DElementHandler.java88 * Returns the value of the variable with specified identifier.
91 * @return the value of the variable
95 ValueObject value = getValueObject();
96 if (value.isVoid()) {
97 throw new IllegalStateException("The element does not return value");
99 return value.getValue();
107 * Returns the value of the parent element.
109 * @return the value of the parent element
113 ValueObject value = this.parent.getValueObject();
114 if (!value
138 addAttribute(String name, String value) argument
[all...]
/openjdk7/jdk/test/java/beans/Statement/
H A DTest6707226.java27 * @summary Tests the value updating in Expression
35 Object value = new Object();
37 Expression expression = new Expression(value, Object.class, "new", null);
38 if (!value.equals(expression.getValue()))
39 throw new Error("the value is updated unexpectedly");
42 if (value.equals(expression.getValue()))
43 throw new Error("the value is not updated as expected");
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DAnnotationValue.java30 * Represents a value of an annotation type element.
38 * Returns the value.
48 * @return the value.
50 Object value(); method in interface:AnnotationValue
53 * Returns a string representation of the value.
55 * @return the text of a Java language annotation value expression
56 * whose value is the value of this element.
/openjdk7/langtools/test/com/sun/javadoc/testHtmlTableTags/pkg2/
H A DC3.java39 String[] value(); method in interface:C3
H A DC4.java34 boolean value() default true;

Completed in 707 milliseconds

1234567891011>>