org.vmdb.hl7
Class Identifiers

java.lang.Object
  |
  +--org.vmdb.hl7.Identifiers

public class Identifiers
extends java.lang.Object

Identifier Type Constants and Lists.

Description: HL7 Network Connectivity For VMDB.

Copyright: Copyright (c) 2002-2003.

Company: Veterinary Medical Database (VMDB).


Constructor Summary
Identifiers()
           
 
Method Summary
static boolean isChipType(java.lang.String sChipType)
          Is the supplied String a known microchip type?
static boolean isEarTagType(java.lang.String sEarTagType)
          Is the supplied String a known ear tag type?
static boolean isTattooType(java.lang.String sTattooType)
          Is the supplied String a known tattoo type?
static java.util.Iterator listChipTypes()
          Get an Iterator over all known chip types.
static java.util.Iterator listEarTagTypes()
          Get an Iterator over all known ear tag types.
static java.util.Iterator listTattooTypes()
          Get an Iterator over all known tattoo types.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Identifiers

public Identifiers()
Method Detail

isChipType

public static boolean isChipType(java.lang.String sChipType)
Is the supplied String a known microchip type?

Parameters:
sChipType - String with case sensitive chip type name.
Returns:
boolean true if found in list of known types.

listChipTypes

public static java.util.Iterator listChipTypes()
Get an Iterator over all known chip types.
This method should be used to populate pick lists. If new chip types are needed, they should be added to the sequence of add statements above. (Someday may want to read this list in from an XML file, etc., but really the list needs to be universal among all applications and users.

Returns:
Iterator over String chip types.

isEarTagType

public static boolean isEarTagType(java.lang.String sEarTagType)
Is the supplied String a known ear tag type?

Parameters:
sEarTagType - String with case sensitive ear tag type name.
Returns:
boolean true if found in list of known types.

listEarTagTypes

public static java.util.Iterator listEarTagTypes()
Get an Iterator over all known ear tag types.
This method should be used to populate pick lists. If new ear tag types are needed, they should be added to the sequence of add statements above. (Someday may want to read this list in from an XML file, etc., but really the list needs to be universal among all applications and users.

Returns:
Iterator over String ear tag types.

isTattooType

public static boolean isTattooType(java.lang.String sTattooType)
Is the supplied String a known tattoo type?

Parameters:
sTattooType - String with case sensitive tattoo type name.
Returns:
boolean true if found in list of known types.

listTattooTypes

public static java.util.Iterator listTattooTypes()
Get an Iterator over all known tattoo types.
This method should be used to populate pick lists. If new tattoo types are needed, they should be added to the sequence of add statements above. (Someday may want to read this list in from an XML file, etc., but really the list needs to be universal among all applications and users.

Returns:
Iterator over String tattoo types.

SourceForge.net Logo