I am new to Tridion and I am doing some work on tridion to get all the schemas in a given publication using TridionCoreservices in java.In c# I found this code \[code\]RepositoryItemsFilterData filterData = http://stackoverflow.com/questions/15563302/new RepositoryItemsFilterData();filterData.ItemTypes = new[] { ItemType.Schema };filterData.Recursive = true;XElement resultXml = client.GetListXml(publicationId, filterData);\[/code\]Can any one please let me know how to set ItemTypes in java.In java we have filter.SetItemTypes() but it is giving me some syntax error.I have searched a lot of sites to get the information but couldn't find it. Can any one help me with this...Thanks in advance.....