
//   Write a class that implements this interface,
//         for HW6 of CS 120A, F01

public interface StringFilter
    {

	  //  Write the following methods.  Note that s might be a word, a
	  //  sentence, a line of a web page (html source code), etc.

       public boolean palindrome(String s);  // returns true if s is a
                                             //   palindrome; ignores spaces
                                             //   and cases!

       public boolean mentions_me(String s);  // returns true IF both your first
                 							  //  AND last names are mentioned, in
                 							  //  any order, any where, in s. Case
                 							  //  insensitive.

       public boolean subliminal(String s);  // returns true if the "satan" is
       										 //  spelled backwards anywhere in s.

       public boolean spooky(String s);      // Returns true if the length of s is
        									 // actually "mentioned" in s.

	   public boolean interesting(String s);  //  Your own!  You decide!  More points
	                                         // the more creative you are.

    }