Lines Matching refs:name

45     private String name;
54 name = derValue.getIA5String();
55 parseName(name);
59 * Create the RFC822Name object with the specified name.
61 * @param name the RFC822Name.
62 * @throws IOException on invalid input name
64 public RFC822Name(String name) throws IOException {
65 parseName(name);
66 this.name = name;
78 * @param name the RFC822Name string
79 * @throws IOException if name is not valid
81 public void parseName(String name) throws IOException {
82 if (name == null || name.length() == 0) {
85 // See if domain is a valid domain name
86 String domain = name.substring(name.indexOf('@')+1);
107 * Return the actual name value of the GeneralName.
110 return name;
114 * Encode the RFC822 name into the DerOutputStream.
120 out.putIA5String(name);
124 * Convert the name into user readable string.
127 return ("RFC822Name: " + name);
131 * Compares this name with another, for equality.
147 return name.equalsIgnoreCase(other.name);
156 return name.toUpperCase().hashCode();
161 * <li>NAME_DIFF_TYPE = -1: input name is different type from name (i.e. does not constrain)
162 * <li>NAME_MATCH = 0: input name matches name
163 * <li>NAME_NARROWS = 1: input name narrows name
164 * <li>NAME_WIDENS = 2: input name widens name
165 * <li>NAME_SAME_TYPE = 3: input name does not match or narrow name, but is same type
173 * has no phrase (such as a common name) before it, has no comment (text
180 * @throws UnsupportedOperationException if name is not exact match, but narrowing and widening are
181 * not supported for this name type.
193 String thisName = name.toLowerCase(Locale.ENGLISH);
232 * Return subtree depth of this name for purposes of determining
235 * @returns distance of name from root
236 * @throws UnsupportedOperationException if not supported for this name type
239 String subtree=name;
242 /* strip off name@ portion */