If you want to set the style class on the <td> element, you've to use columnClasses attribute of the <h:dataTable>:
<h:dataTable columnClasses="col1,col2,col3">
It accepts a commaseparated string of CSS class names which are to be applied on the individual columns in sequence. You can even let it refer to a bean property which autopopulates the desired string:
<h:dataTable columnClasses="#{bean.columnClasses}">
Each styleclass will however be applied on the entire column. If you'd like to style an individual cell independently, you'd better to wrap it in an <h:outputText>:
<h:outputText value="#{_component.displayName}" styleClass="#{_component.styleClass}" />
or
<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass}" />
or
<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass(component)}" />
Or if the cell covers multiple components, wrap them inside a <h:panelGroup> instead and set the styleClass on it.