Get all class methods.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tripharn

    Get all class methods.

    Is there a way of retrieving all the methods from an object??

    So if I load say a String... can I get all the available methods for that
    object?

    Thanks heaps,
    Tripharn


  • Alex Molochnikov

    #2
    Re: Get all class methods.

    java.lang.Class

    getMethod()
    getMethods()

    java.lang.refle ct.Method

    "Tripharn" <telwyn@bigpond .net.au> wrote in message
    news:gev9b.1048 22$bo1.6481@new s-server.bigpond. net.au...[color=blue]
    > Is there a way of retrieving all the methods from an object??
    >
    > So if I load say a String... can I get all the available methods for that
    > object?
    >
    > Thanks heaps,
    > Tripharn
    >
    >[/color]

    Comment

    Working...