public class VetApp
extends java.lang.Object
Constructor and Description |
---|
VetApp() |
Modifier and Type | Method and Description |
---|---|
static void |
DeleteOwner(int index)
Delete owner entry
|
static void |
DeletePet(int index)
Delete pet entry
|
static void |
DeleteVetTech(int index)
Delete vet entry
|
static void |
ListAll()
Lists all owners and their pets with their respective vets
|
static void |
ListAllOwners()
Lists all owners
|
static void |
ListAllOwnersAndPets()
Lists all owners and their pets
|
static void |
ListAllPets()
Lists all pets
|
static void |
ListAllVets()
Lists all vets
|
static void |
main(java.lang.String[] args) |
static void |
ModifyOwner(int index,
int choice)
Modify owner entry
|
static void |
ModifyPet(int index,
int choice)
Modify pet entry
|
static void |
ModifyVetTech(int index,
int choice)
Modify vet entry
|
static void |
NewOwner()
Add new owner
|
static void |
NewPet()
Add new pet
|
static void |
NewVetTech()
Add new vet tech
|
static void |
SearchOwners(int choice,
java.lang.String entry)
Search owner entries
|
static void |
SearchPets(int choice,
java.lang.String entry)
Search pet entries
|
static void |
SearchVets(int choice,
java.lang.String entry)
Search vet entries
|
public static void main(java.lang.String[] args)
args
- the command line argumentspublic static void ListAllPets()
public static void ListAllOwners()
public static void ListAllVets()
public static void ListAllOwnersAndPets()
public static void ListAll()
public static void NewPet()
public static void NewOwner()
public static void NewVetTech()
public static void ModifyPet(int index, int choice)
index
- choice
- public static void ModifyOwner(int index, int choice)
index
- choice
- public static void ModifyVetTech(int index, int choice)
index
- choice
- public static void DeletePet(int index)
index
- public static void DeleteOwner(int index)
index
- public static void DeleteVetTech(int index)
index
- public static void SearchPets(int choice, java.lang.String entry)
choice
- entry
- public static void SearchOwners(int choice, java.lang.String entry)
choice
- entry
- public static void SearchVets(int choice, java.lang.String entry)
choice
- entry
-