Searched defs:intValue (Results 1 - 25 of 109) sorted by relevance

12345

/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DDereferencePolicy.java80 private int intValue; field in class:DereferencePolicy
87 * @param intValue The integer value for this dereference policy.
89 private DereferencePolicy(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:DereferencePolicy
103 return intValue;
117 switch (intValue)
H A DModificationType.java78 private int intValue; field in class:ModificationType
89 * @param intValue The integer value for this modification type.
93 private ModificationType(int intValue, String ldifName) argument
95 this.intValue = intValue;
106 public int intValue() method in class:ModificationType
108 return intValue;
134 switch (intValue)
H A DSearchScope.java85 private int intValue; field in class:SearchScope
92 * @param intValue The integer value associated with this search
95 private SearchScope(int intValue) argument
97 this.intValue = intValue;
107 public int intValue() method in class:SearchScope
109 return intValue;
121 switch (intValue)
/forgerock/opendj2/src/server/org/opends/server/types/
H A DDereferencePolicy.java79 private int intValue; field in class:DereferencePolicy
86 * @param intValue The integer value for this dereference policy.
88 private DereferencePolicy(int intValue) argument
90 this.intValue = intValue;
100 public int intValue() method in class:DereferencePolicy
102 return intValue;
116 switch (intValue)
H A DModificationType.java77 private int intValue; field in class:ModificationType
88 * @param intValue The integer value for this modification type.
92 private ModificationType(int intValue, String ldifName) argument
94 this.intValue = intValue;
105 public int intValue() method in class:ModificationType
107 return intValue;
133 switch (intValue)
H A DSearchScope.java84 private int intValue; field in class:SearchScope
91 * @param intValue The integer value associated with this search
94 private SearchScope(int intValue) argument
96 this.intValue = intValue;
106 public int intValue() method in class:SearchScope
108 return intValue;
120 switch (intValue)
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DDereferencePolicy.java80 private int intValue; field in class:DereferencePolicy
87 * @param intValue The integer value for this dereference policy.
89 private DereferencePolicy(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:DereferencePolicy
103 return intValue;
117 switch (intValue)
H A DModificationType.java78 private int intValue; field in class:ModificationType
89 * @param intValue The integer value for this modification type.
93 private ModificationType(int intValue, String ldifName) argument
95 this.intValue = intValue;
106 public int intValue() method in class:ModificationType
108 return intValue;
134 switch (intValue)
H A DSearchScope.java85 private int intValue; field in class:SearchScope
92 * @param intValue The integer value associated with this search
95 private SearchScope(int intValue) argument
97 this.intValue = intValue;
107 public int intValue() method in class:SearchScope
109 return intValue;
121 switch (intValue)
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DDereferencePolicy.java80 private int intValue; field in class:DereferencePolicy
87 * @param intValue The integer value for this dereference policy.
89 private DereferencePolicy(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:DereferencePolicy
103 return intValue;
117 switch (intValue)
H A DModificationType.java78 private int intValue; field in class:ModificationType
89 * @param intValue The integer value for this modification type.
93 private ModificationType(int intValue, String ldifName) argument
95 this.intValue = intValue;
106 public int intValue() method in class:ModificationType
108 return intValue;
134 switch (intValue)
H A DSearchScope.java85 private int intValue; field in class:SearchScope
92 * @param intValue The integer value associated with this search
95 private SearchScope(int intValue) argument
97 this.intValue = intValue;
107 public int intValue() method in class:SearchScope
109 return intValue;
121 switch (intValue)
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DDereferencePolicy.java79 private int intValue; field in class:DereferencePolicy
86 * @param intValue The integer value for this dereference policy.
88 private DereferencePolicy(int intValue) argument
90 this.intValue = intValue;
100 public int intValue() method in class:DereferencePolicy
102 return intValue;
116 switch (intValue)
H A DModificationType.java77 private int intValue; field in class:ModificationType
88 * @param intValue The integer value for this modification type.
92 private ModificationType(int intValue, String ldifName) argument
94 this.intValue = intValue;
105 public int intValue() method in class:ModificationType
107 return intValue;
133 switch (intValue)
H A DSearchScope.java84 private int intValue; field in class:SearchScope
91 * @param intValue The integer value associated with this search
94 private SearchScope(int intValue) argument
96 this.intValue = intValue;
106 public int intValue() method in class:SearchScope
108 return intValue;
120 switch (intValue)
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/service/
H A DLogType.java44 public int intValue; field in class:LogType
60 intValue = Integer.parseInt(pcdata);
H A DParamIndex.java43 public int intValue; field in class:ParamIndex
54 intValue = Integer.parseInt(pcdata);
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java157 * @param intValue the value of the attribute
160 public static final byte[] toOctets(AttributeType type, int intValue) { argument
165 octets[2] = (byte) ((intValue >>> 24) & 0xFF);
166 octets[3] = (byte) ((intValue >>> 16) & 0xFF);
167 octets[4] = (byte) ((intValue >>> 8) & 0xFF);
168 octets[5] = (byte) (intValue & 0xFF);
198 * @return intValue the value of the attribute
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java157 * @param intValue the value of the attribute
160 public static final byte[] toOctets(AttributeType type, int intValue) { argument
165 octets[2] = (byte) ((intValue >>> 24) & 0xFF);
166 octets[3] = (byte) ((intValue >>> 16) & 0xFF);
167 octets[4] = (byte) ((intValue >>> 8) & 0xFF);
168 octets[5] = (byte) (intValue & 0xFF);
198 * @return intValue the value of the attribute
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/service/
H A DLogType.java44 public int intValue; field in class:LogType
60 intValue = Integer.parseInt(pcdata);
H A DParamIndex.java43 public int intValue; field in class:ParamIndex
54 intValue = Integer.parseInt(pcdata);
/forgerock/opendj-b2.6/src/server/org/opends/server/controls/
H A DPasswordPolicyErrorType.java183 public int intValue() method in class:PasswordPolicyErrorType
H A DPersistentSearchChangeType.java79 private int intValue; field in class:PersistentSearchChangeType
87 * @param intValue The integer value associated with this change type.
89 private PersistentSearchChangeType(int intValue) argument
91 this.intValue = intValue;
101 public int intValue() method in class:PersistentSearchChangeType
103 return intValue;
116 switch (intValue)
136 * @param intValue The integer value to decode as a change type.
143 public static PersistentSearchChangeType valueOf(int intValue) argument
175 intToTypes(int intValue) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/
H A DLogLevel.java117 public final int intValue() { method in class:LogLevel
/forgerock/opendj2/src/server/org/opends/server/controls/
H A DPasswordPolicyErrorType.java182 public int intValue() method in class:PasswordPolicyErrorType

Completed in 72 milliseconds

12345