Lines Matching refs:family

41      * OS family to look for
43 private String family;
57 * OS family that can be tested for. {@value}
61 * OS family that can be tested for. {@value}
65 * OS family that can be tested for. {@value}
69 * OS family that can be tested for. {@value}
73 * OS family that can be tested for. {@value}
77 * OS family that can be tested for. {@value}
81 * OS family that can be tested for. {@value}
85 * OS family that can be tested for. {@value}
89 * OS family that can be tested for. {@value}
93 * OS family that can be tested for. {@value}
97 * OS family that can be tested for. {@value}
100 /** OS family that can be tested for. {@value} */
119 * Constructor that sets the family attribute
120 * @param family a String value
122 public Os(String family) {
123 setFamily(family);
127 * Sets the desired OS family type
129 * @param f The OS family type desired<br />
145 family = f.toLowerCase(Locale.ENGLISH);
184 return isOs(family, name, arch, version);
189 * given OS family.
190 * @param family the family to check for
194 public static boolean isFamily(String family) {
195 return isOs(family, null, null, null);
236 * given OS family, name, architecture and version
238 * @param family The OS family
245 public static boolean isOs(String family, String name, String arch,
249 if (family != null || name != null || arch != null
257 if (family != null) {
274 if (family.equals(FAMILY_WINDOWS)) {
276 } else if (family.equals(FAMILY_9X)) {
278 } else if (family.equals(FAMILY_NT)) {
280 } else if (family.equals(FAMILY_OS2)) {
282 } else if (family.equals(FAMILY_NETWARE)) {
284 } else if (family.equals(FAMILY_DOS)) {
286 } else if (family.equals(FAMILY_MAC)) {
289 } else if (family.equals(FAMILY_TANDEM)) {
291 } else if (family.equals(FAMILY_UNIX)) {
296 } else if (family.equals(FAMILY_ZOS)) {
299 } else if (family.equals(FAMILY_OS400)) {
301 } else if (family.equals(FAMILY_VMS)) {
305 "Don\'t know how to detect os family \""
306 + family + "\"");